Load libraries
In [1]:
import os
import requests
import pandas as pd
import matplotlib.pyplot as plt
import time
from sklearn.feature_extraction.text import CountVectorizer, TfidfTransformer
from sklearn.feature_extraction.text import TfidfVectorizer
#from wordcloud import WordCloud
#from bs4 import BeautifulSoup
from sklearn.decomposition import LatentDirichletAllocation
from sklearn.cluster import KMeans
from sklearn.metrics import silhouette_score
from sklearn.decomposition import PCA
import numpy as np
Obtain Data from NYT API¶
In [ ]:
# Get api key from developer resources
api_key = "N2daBg8YL8QDJVes5mFGFkArJrKwhdUy"
In [ ]:
# Base URL for the Article Search API
base_url = 'https://api.nytimes.com/svc/search/v2/articlesearch.json'
In [ ]:
# response here
def nyt_wrapper(apikey, begin_date, end_date, q, page):
'''
wrapper that takes all desired filters and gets query from nyt
'''
query = "https://api.nytimes.com/svc/search/v2/articlesearch.json?api-key=" + apikey
begin_date_formatted = "&begin_date=" + begin_date
end_date_formatted = "&end_date=" + end_date
q_formatted = "&q=" + q
page_formatted = "&page=" + page
full_response = requests.get(query+begin_date_formatted + end_date_formatted + q_formatted+ page_formatted)
return full_response.json()
In [ ]:
num_pages = 100
articles = []
for page in range(num_pages):
response = nyt_wrapper(api_key,'20100101', '20241020', 'diaper', str(page))['response']['docs']
articles.append(response)
time.sleep(15)
#articles
Out[ ]:
[[{'abstract': 'Diaper need causes more anxiety than food or housing insecurity for some mothers.',
'web_url': 'https://www.nytimes.com/2021/03/17/parenting/diaper-bank-coronavirus.html',
'snippet': 'Diaper need causes more anxiety than food or housing insecurity for some mothers.',
'lead_paragraph': 'If your child is not potty trained, how many diapers do you have on hand right now? That’s a question I certainly wouldn’t have been able to answer with any specificity when my children were babies. But it’s a question that parents who struggle to afford the expense — about $70-$80 per month, per baby — can answer easily, because managing diaper need is among their most significant anxieties.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-superJumbo.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumSquareAt3X-v2.jpg',
'height': 1166,
'width': 1167,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-hpLarge-v3.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-largeWidescreen573-v3.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-largeWidescreen1050-v3.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-threeByTwoLargeAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-watch268-v3.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-verticalTwoByThree735-v3.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/17/multimedia/17parenting-NL-diapers/17parenting-NL-diapers-mobileMasterAt3x.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘Living Paycheck to Paycheck, Living Diaper to Diaper’',
'kicker': 'The NYT Parenting Newsletter',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Food', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Toilet Training', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Baby Foods', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Poverty', 'rank': 8, 'major': 'N'}],
'pub_date': '2021-03-17T10:30:06+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9b0ae0c8-f54d-596f-97e3-1982346ed45a',
'word_count': 882,
'uri': 'nyt://article/9b0ae0c8-f54d-596f-97e3-1982346ed45a'},
{'abstract': 'Basic economics, still relevant.',
'web_url': 'https://krugman.blogs.nytimes.com/2012/02/06/diapers-and-deflation/',
'snippet': 'Basic economics, still relevant.',
'lead_paragraph': 'Good article in Bloomberg:',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Diapers and Deflation',
'kicker': 'Paul Krugman',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-02-06T13:54:22+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Opinion',
'byline': {'original': 'By Paul Krugman',
'person': [{'firstname': 'Paul',
'middlename': None,
'lastname': 'Krugman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/306f3c53-336f-563e-99d7-f0e6fac157cc',
'word_count': 125,
'uri': 'nyt://article/306f3c53-336f-563e-99d7-f0e6fac157cc'},
{'abstract': 'After 25 hours of research, considering 30 different diapers, and testing 15 of them in a professional testing facility and at home, we think the budget Parent’s Choice and Up & Up diapers both offer the best combinations of performance and value. Though their construction isn’t exactly the same, and they each scored a bit...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-diapers/',
'snippet': 'After 25 hours of research, considering 30 different diapers, and testing 15 of them in a professional testing facility and at home, we think the budget Parent’s Choice and Up & Up diapers both offer the best combinations of performance and va...',
'lead_paragraph': 'After 25 hours of research, considering 30 different diapers, and testing 15 of them in a professional testing facility and at home, we think the budget Parent’s Choice and Up & Up diapers both offer the best combinations of performance and value. Though their construction isn’t exactly the same, and they each scored a bit...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/disposable-diapers-lowres-7903.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/disposable-diapers-lowres-7903.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/disposable-diapers-lowres-7903.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/disposable-diapers-lowres-7903.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Diapers',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2018-05-15T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/4f01e822-7d20-56bc-a405-df0c216d7bbb',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/4f01e822-7d20-56bc-a405-df0c216d7bbb'},
{'abstract': 'Noelle Howey’s son is almost 4. He is not potty-trained.',
'web_url': 'https://parenting.blogs.nytimes.com/2010/06/04/diapers-in-kindergarten/',
'snippet': 'Noelle Howey’s son is almost 4. He is not potty-trained.',
'lead_paragraph': 'Noelle Howey’s son is almost 4. He is not potty-trained. And on one hand, she has visions of him 10 years down the road “still obsessed with Batman and sporting ‘Toy Story 7’-themed training pants in XXL.”',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Diapers in Kindergarten?',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-06-04T15:38:18+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/9c9b5712-c912-5a76-9101-832467211e7d',
'word_count': 376,
'uri': 'nyt://article/9c9b5712-c912-5a76-9101-832467211e7d'},
{'abstract': 'Disposable-diaper banks in Chicago are hard-pressed to keep up with the demand from low-income mothers.',
'web_url': 'https://www.nytimes.com/2010/12/12/us/12cncdiaper.html',
'snippet': 'Disposable-diaper banks in Chicago are hard-pressed to keep up with the demand from low-income mothers.',
'lead_paragraph': 'Damikka Griffin, a social worker, would like it if her low-income clients did not have to choose between necessities like paying their phone bill and rent, or diapering their infants. When she can take diapers with her on a trip to a client’s home, it makes her job easier.',
'print_section': 'A',
'print_page': '41A',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Agencies Challenged by Demand for Diapers',
'kicker': 'Chicago News Cooperative',
'content_kicker': None,
'print_headline': 'Agencies Challenged By Demand For Diapers',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Philanthropy',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Food Banks and Pantries',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Welfare (US)', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Chicago (Ill)', 'rank': 6, 'major': 'N'}],
'pub_date': '2010-12-12T00:32:21+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Rachel Cromidas',
'person': [{'firstname': 'Rachel',
'middlename': None,
'lastname': 'Cromidas',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a28df0c6-c78f-5eec-9978-17a770ce3d0f',
'word_count': 514,
'uri': 'nyt://article/a28df0c6-c78f-5eec-9978-17a770ce3d0f'},
{'abstract': 'There are a number of reasons parents may choose cloth diapers over disposables, including reducing cost, reducing waste, or simply the way cloth diapers look and feel on their baby’s bottom. After researching all the readily available cloth diapers we could find and recruiting six cloth-diapering families to compare top designs, we think the bumGenius...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-cloth-diapers/',
'snippet': 'There are a number of reasons parents may choose cloth diapers over disposables, including reducing cost, reducing waste, or simply the way cloth diapers look and feel on their baby’s bottom. After researching all the readily available cloth diape...',
'lead_paragraph': 'There are a number of reasons parents may choose cloth diapers over disposables, including reducing cost, reducing waste, or simply the way cloth diapers look and feel on their baby’s bottom. After researching all the readily available cloth diapers we could find and recruiting six cloth-diapering families to compare top designs, we think the bumGenius...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-diapers-lowres-2896.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-diapers-lowres-2896.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-diapers-lowres-2896.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-diapers-lowres-2896.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Cloth Diapers',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2018-05-15T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/4a34dffe-f34a-5c30-832d-2b6feeb63edd',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/4a34dffe-f34a-5c30-832d-2b6feeb63edd'},
{'abstract': 'Would you buy a diaper that analyzed what comes out of your baby as thoroughly as you analyze what goes in?',
'web_url': 'https://parenting.blogs.nytimes.com/2013/07/10/diapers-that-give-t-m-i/',
'snippet': 'Would you buy a diaper that analyzed what comes out of your baby as thoroughly as you analyze what goes in?',
'lead_paragraph': 'Too much information.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Diapers That Give T.M.I.',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Mobile Applications',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-07-10T18:06:16+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': "By Kj Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0174eb6e-61d0-57ae-bbdf-2feb80d142b2',
'word_count': 381,
'uri': 'nyt://article/0174eb6e-61d0-57ae-bbdf-2feb80d142b2'},
{'abstract': 'A good adult diaper can open up the world for someone with incontinence, making daily life a whole lot easier. A reliable diaper allows you to see friends, go to the gym, and travel without anxiety about leakage, smells, or finding the nearest bathroom to change. After testing 15 adult diapers, we found that drugstore...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-adult-diapers/',
'snippet': 'A good adult diaper can open up the world for someone with incontinence, making daily life a whole lot easier. A reliable diaper allows you to see friends, go to the gym, and travel without anxiety about leakage, smells, or finding the nearest bat...',
'lead_paragraph': 'A good adult diaper can open up the world for someone with incontinence, making daily life a whole lot easier. A reliable diaper allows you to see friends, go to the gym, and travel without anxiety about leakage, smells, or finding the nearest bathroom to change. After testing 15 adult diapers, we found that drugstore...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2024/05/adultdiapers-2048px-1625-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2024/05/adultdiapers-2048px-1625-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2024/05/adultdiapers-2048px-1625-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2024/05/adultdiapers-2048px-1625-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Adult Diapers',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2024-05-31T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/1caf2ec7-5310-54a7-8dec-59aed97637b5',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/1caf2ec7-5310-54a7-8dec-59aed97637b5'},
{'abstract': 'There’s a collective form of magical thinking going on, in which our infants wear Oxford shirts and trade stocks online.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/06/08/obsessions-diaper-burn/',
'snippet': 'There’s a collective form of magical thinking going on, in which our infants wear Oxford shirts and trade stocks online.',
'lead_paragraph': 'I was thrilled and slightly horrified last week to discover that our local drugstore was now selling Huggies in a faux-denim pattern, with trompe l’oeil seams, back pockets and signs of denim distress. The diapers had already caused some controversy when ABC refused to air its commercial – a toddler pictured as a man-about-town dressed in a button-down Oxford shirt and denim diapers getting ogled by the ladies and climbing into a convertible – because it aired the word “pooping” on screen. The hypocrisy here is frankly hilarious, considering that the ABC program “Grey’s Anatomy” has used the word “douche” not in the medical sense, but as a pejorative put-down, and a character on the 1990’s ABC program “NYPD Blue” routinely used the word with its popular pairing, “bag.” Compared to that, what’s wrong with a little poop?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Obsessions | Diaper Burn',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-06-08T19:10:51+0000',
'document_type': 'article',
'news_desk': 'TStyle',
'section_name': 'T Magazine',
'byline': {'original': 'By Alex Kuczynski',
'person': [{'firstname': 'Alex',
'middlename': None,
'lastname': 'Kuczynski',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/2b42d21d-e097-578c-beed-1c2f76849f78',
'word_count': 522,
'uri': 'nyt://article/2b42d21d-e097-578c-beed-1c2f76849f78'},
{'abstract': 'A dedicated diaper pail can make the hourly task of changing a baby’s diaper easier and conceal the stink of the discard pile. After testing 15 diaper pails, we found that the Munchkin Step Diaper Pail provides the best odor control and is the easiest to use. If you don’t want to have to buy...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-diaper-pail/',
'snippet': 'A dedicated diaper pail can make the hourly task of changing a baby’s diaper easier and conceal the stink of the discard pile. After testing 15 diaper pails, we found that the Munchkin Step Diaper Pail provides the best odor control and is the eas...',
'lead_paragraph': 'A dedicated diaper pail can make the hourly task of changing a baby’s diaper easier and conceal the stink of the discard pile. After testing 15 diaper pails, we found that the Munchkin Step Diaper Pail provides the best odor control and is the easiest to use. If you don’t want to have to buy...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/diaperpails-2048px-5713-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/diaperpails-2048px-5713-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/diaperpails-2048px-5713-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/diaperpails-2048px-5713-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Diaper Pail',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2017-07-12T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/7e84dbce-0a46-5832-9069-12123c90a9c1',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/7e84dbce-0a46-5832-9069-12123c90a9c1'}],
[{'abstract': 'A new Huggies ad for diapers in a blue jeans pattern does not shy away from the “P” words.',
'web_url': 'https://www.nytimes.com/2010/05/25/business/media/25adco.html',
'snippet': 'A new Huggies ad for diapers in a blue jeans pattern does not shy away from the “P” words.',
'lead_paragraph': 'IN a new television commercial for Huggies, the Kimberly-Clark diaper brand, two women are eating lunch at an outdoor cafe when something suddenly catches their attention, and they lower oversize sunglasses for a better look. ',
'print_section': 'B',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/05/25/business/25Adco2/25Adco2-popup.jpg',
'height': 439,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/05/25/business/25Adco2/25Adco2-articleInline.jpg',
'height': 128,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/05/25/business/25Adco2/25Adco2-blogSmallInline.jpg',
'height': 113,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/05/25/business/25Adco2/25Adco2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/05/25/business/25Adco2/25Adco2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Both Style and Substance in Diaper Advertising',
'kicker': 'Advertising',
'content_kicker': None,
'print_headline': 'Both Style and Substance In Diaper Advertising',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Babies', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 4,
'major': 'N'}],
'pub_date': '2010-05-24T23:39:52+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Andrew Adam Newman',
'person': [{'firstname': 'Andrew',
'middlename': 'Adam',
'lastname': 'Newman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/eebad2fb-8402-58b1-a8bf-93ecec93f4b5',
'word_count': 903,
'uri': 'nyt://article/eebad2fb-8402-58b1-a8bf-93ecec93f4b5'},
{'abstract': 'Work-life conflicts are standard for fathers everywhere, and dads who happen to be playing in the Masters are no exception.',
'web_url': 'https://www.nytimes.com/2012/04/07/sports/golf/fathers-playing-at-masters-juggle-golf-and-family.html',
'snippet': 'Work-life conflicts are standard for fathers everywhere, and dads who happen to be playing in the Masters are no exception.',
'lead_paragraph': 'AUGUSTA, Ga. — This is Bubba Watson’s fourth Masters, so his routine is well established. Every year he likes to arrive here on Saturday so he can play one practice round Sunday, without any fans (or many of the other players) around to bother him. Then he falls into the usual Monday-Tuesday-Wednesday preparation sequence before the tournament begins Thursday.',
'print_section': 'D',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/07/sports/dads/dads-blog480.jpg',
'height': 326,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/07/sports/dads/dads-jumbo.jpg',
'height': 696,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/07/sports/dads/dads-popup.jpg',
'height': 442,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/07/sports/dads/dads-articleInline.jpg',
'height': 129,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/07/sports/dads/dads-sfSpan.jpg',
'height': 269,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/07/sports/dads/dads-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/04/07/sports/dads/dads-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'For Masters Dads, Balancing Divots and Diaper Duty',
'kicker': None,
'content_kicker': None,
'print_headline': 'From Divots to Diaper Duty',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Golf', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Masters Golf Tournament',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Watson, Bubba', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Johnson, Zach', 'rank': 5, 'major': 'N'},
{'name': 'persons',
'value': 'Byrd, Jonathan Currie',
'rank': 6,
'major': 'N'}],
'pub_date': '2012-04-07T03:00:27+0000',
'document_type': 'article',
'news_desk': 'Sports',
'section_name': 'Sports',
'subsection_name': 'Golf',
'byline': {'original': 'By Sam Borden',
'person': [{'firstname': 'Sam',
'middlename': None,
'lastname': 'Borden',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6f6efa33-e57f-5902-9a21-7bbedc268c2e',
'word_count': 897,
'uri': 'nyt://article/6f6efa33-e57f-5902-9a21-7bbedc268c2e'},
{'abstract': 'The new Mazda 5 is distinguished from other minivans by its small size, a design that is more common in Europe and Japan, where such minivans are called “multipurpose vehicles.”',
'web_url': 'https://www.nytimes.com/2011/02/13/automobiles/autoreviews/mazda-5-review.html',
'snippet': 'The new Mazda 5 is distinguished from other minivans by its small size, a design that is more common in Europe and Japan, where such minivans are called “multipurpose vehicles.”',
'lead_paragraph': 'I USED to make minivan jokes. They were harmless jabs — reflexive, and let’s face it, clichéd — at friends about their pending parenthood.',
'print_section': 'AU',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-articleLarge.jpg',
'height': 315,
'width': 600,
'legacy': {'xlarge': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 315},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-jumbo.jpg',
'height': 615,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-popup.jpg',
'height': 391,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-articleInline.jpg',
'height': 114,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-sfSpan.jpg',
'height': 237,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/02/13/automobiles/MAZDA-1/MAZDA-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Mazda 5 Is Ready for Parenthood, Diapers Not Included',
'kicker': 'Behind the Wheel | 2012 Mazda 5',
'content_kicker': None,
'print_headline': 'Ready for Parenthood, Diapers Not Included',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Mazda Motor Corp',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Reviews', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Vans', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Automobiles', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-02-11T14:44:16+0000',
'document_type': 'article',
'news_desk': 'Automobiles',
'section_name': 'Automobiles',
'subsection_name': 'New Cars',
'byline': {'original': 'By Richard S. Chang',
'person': [{'firstname': 'Richard',
'middlename': 'S.',
'lastname': 'Chang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/b57129e0-b1c6-526e-b25b-24d4d4ffcef7',
'word_count': 1224,
'uri': 'nyt://article/b57129e0-b1c6-526e-b25b-24d4d4ffcef7'},
{'abstract': 'Travel and legal experts say a variety of factors need be considered when taking a minor abroad, including paperwork for different surnames.',
'web_url': 'https://www.nytimes.com/2010/01/17/travel/17prackidnap.html',
'snippet': 'Travel and legal experts say a variety of factors need be considered when taking a minor abroad, including paperwork for different surnames.',
'lead_paragraph': 'THE recent return to the United States of a 9-year-old boy who was at the center of an international abduction and custody dispute once again called attention to the issues that can complicate international travel with children, especially when one parent is staying behind.',
'print_section': 'TR',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/01/17/travel/17prackidnapspan-1/articleLarge.jpg',
'height': 331,
'width': 600,
'legacy': {'xlarge': 'images/2010/01/17/travel/17prackidnapspan-1/articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 331},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/01/17/travel/17prackidnapspan-1/articleLarge.jpg',
'height': 331,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/01/17/travel/17prackidnapspan-1/sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/01/17/travel/17prackidnapspan-1/thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/01/17/travel/17prackidnapspan-1/thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Stroller, Diapers, Paperwork',
'kicker': 'Practical Traveler',
'content_kicker': None,
'print_headline': 'Stroller, Diapers, Paperwork',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 4,
'major': 'N'}],
'pub_date': '2010-01-11T23:15:33+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Michelle Higgins',
'person': [{'firstname': 'Michelle',
'middlename': None,
'lastname': 'Higgins',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b9fdacca-6835-5818-88f3-92b8712df113',
'word_count': 1214,
'uri': 'nyt://article/b9fdacca-6835-5818-88f3-92b8712df113'},
{'abstract': 'A police bulletin seeking information on a man recorded shoplifting packages of diapers drew fresh attention to a continuing crisis of access to the product, according to the National Diaper Bank Network.',
'web_url': 'https://www.nytimes.com/2021/10/03/us/diaper-need-walmart-shoplifting.html',
'snippet': 'A police bulletin seeking information on a man recorded shoplifting packages of diapers drew fresh attention to a continuing crisis of access to the product, according to the National Diaper Bank Network.',
'lead_paragraph': '“Anyone recognize him?” the police in Winter Haven, Fla., asked on Facebook last month.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-horizontalMediumAt2X.jpg',
'height': 1999,
'width': 2998,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-threeByTwoLargeAt2X.jpg',
'height': 1999,
'width': 2998,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/02xp-Diapers-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/10/02/us/02xp-Diapers/merlin_181813143_da763f0a-7178-4d43-adc1-edf4ef7a3bf6-mobileMasterAt3x.jpg',
'height': 1199,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Diapers Are the Latest Pandemic Shortage',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Shortages', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'National Diaper Bank Network',
'rank': 6,
'major': 'N'}],
'pub_date': '2021-10-03T13:07:20+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Alyssa Lukpat',
'person': [{'firstname': 'Alyssa',
'middlename': None,
'lastname': 'Lukpat',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8d4ab581-620f-51a7-9000-e0656d5b25ac',
'word_count': 891,
'uri': 'nyt://article/8d4ab581-620f-51a7-9000-e0656d5b25ac'},
{'abstract': 'Two new comedy shows, “Raising Hope” and “Running Wilde,” have something to say about class in America.',
'web_url': 'https://www.nytimes.com/2010/09/21/arts/television/21hope.html',
'snippet': 'Two new comedy shows, “Raising Hope” and “Running Wilde,” have something to say about class in America.',
'lead_paragraph': 'Martha Plimpton isn’t the only reason “Raising Hope”could be the best new sitcom of the season, but she is the main reason. Because it isn’t until the actress trudges into view as Virginia Chance, a cleaning woman in a sherbet-pink uniform, a cigarette dangling from her lip and a hostile glint in her eyes, that the premiere on Tuesday on Fox hits full comic stride.',
'print_section': 'C',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/20/arts/hope1/hope1-articleLarge.jpg',
'height': 334,
'width': 600,
'legacy': {'xlarge': 'images/2010/09/20/arts/hope1/hope1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 334},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/20/arts/hope1/hope1-articleLarge.jpg',
'height': 334,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/20/arts/hope1/hope1-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/20/arts/hope1/hope1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/09/20/arts/hope1/hope1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'From Cleaning Pools to Changing Diapers',
'kicker': 'Television Review',
'content_kicker': None,
'print_headline': 'From Cleaning Pools To Changing Diapers',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Neff, Lucas',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Arnet, Will', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Russell, Keri', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Plimpton, Martha', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Television', 'rank': 5, 'major': 'N'}],
'pub_date': '2010-09-20T16:30:30+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Television',
'byline': {'original': 'By Alessandra Stanley',
'person': [{'firstname': 'Alessandra',
'middlename': None,
'lastname': 'Stanley',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/e1a48d58-1e2c-5e39-bc7a-1caae7dc613c',
'word_count': 960,
'uri': 'nyt://article/e1a48d58-1e2c-5e39-bc7a-1caae7dc613c'},
{'abstract': 'You don’t absolutely need a designated diaper bag to leave the house with a young child. But when you have a fully stocked bag at the ready, it’s much easier to get out the door and change your kid on the go. We’ve tested 50 diaper bags since 2017, filling them with diapers, bottles, and...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-diaper-bag/',
'snippet': 'You don’t absolutely need a designated diaper bag to leave the house with a young child. But when you have a fully stocked bag at the ready, it’s much easier to get out the door and change your kid on the go. We’ve tested 50 diaper bags since 2017...',
'lead_paragraph': 'You don’t absolutely need a designated diaper bag to leave the house with a young child. But when you have a fully stocked bag at the ready, it’s much easier to get out the door and change your kid on the go. We’ve tested 50 diaper bags since 2017, filling them with diapers, bottles, and...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2020/06/diaperbags-2048px-08898-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2020/06/diaperbags-2048px-08898-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2020/06/diaperbags-2048px-08898-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2020/06/diaperbags-2048px-08898-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'Our Favorite Diaper Bags',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2017-08-01T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/85416cd0-c362-5ee9-9190-7a812ec48926',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/85416cd0-c362-5ee9-9190-7a812ec48926'},
{'abstract': 'Do you love or hate child-care tasks? See how you compare to others.',
'web_url': 'https://well.blogs.nytimes.com/2012/03/22/quiz-the-diaper-changing-index/',
'snippet': 'Do you love or hate child-care tasks? See how you compare to others.',
'lead_paragraph': 'Do you like waking up at night to care for a crying baby? How about changing diapers? Did you complain last time you had to cancel plans because you had a sick child?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Quiz: The Diaper-Changing Index',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-03-22T04:02:34+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Health',
'byline': {'original': 'By Tara Parker-Pope',
'person': [{'firstname': 'Tara',
'middlename': None,
'lastname': 'Parker-Pope',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d193fc0e-e4f4-5fa1-a3cf-2bb53eb73269',
'word_count': 135,
'uri': 'nyt://article/d193fc0e-e4f4-5fa1-a3cf-2bb53eb73269'},
{'abstract': 'For teenagers who are pregnant or already mothers, the fairy-tale aspect of prom night is especially potent: They can transform themselves for a few hours and feel free. ',
'web_url': 'https://www.nytimes.com/2018/06/12/well/family/teenage-pregnancy-prom.html',
'snippet': 'For teenagers who are pregnant or already mothers, the fairy-tale aspect of prom night is especially potent: They can transform themselves for a few hours and feel free. ',
'lead_paragraph': 'High school proms always have something of a Cinderella quality: Kids who usually slouch around in T-shirts and sneakers are transformed by formal wear into glamorous princes and princesses for the night.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-articleLarge-v2.jpg',
'height': 900,
'width': 600,
'legacy': {'xlarge': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 900},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-popup-v2.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-blog480-v2.jpg',
'height': 720,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-blog533-v2.jpg',
'height': 800,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-blog427-v2.jpg',
'height': 641,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-tmagSF-v2.jpg',
'height': 543,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-tmagArticle-v2.jpg',
'height': 888,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-slide-v2.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-jumbo-v2.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-superJumbo-v2.jpg',
'height': 2000,
'width': 1333,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-blog225-v2.jpg',
'height': 338,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-master1050-v2.jpg',
'height': 1575,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-master675-v2.jpg',
'height': 1013,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-master495-v2.jpg',
'height': 743,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-master180-v2.jpg',
'height': 270,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-master315-v2.jpg',
'height': 473,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-master768-v2.jpg',
'height': 1152,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-smallSquare168-v3.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-smallSquare252-v3.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-horizontalMediumAt2X.jpg',
'height': 888,
'width': 1333,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-threeByTwoLargeAt2X-v3.jpg',
'height': 776,
'width': 1163,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-threeByTwoMediumAt2X-v3.jpg',
'height': 776,
'width': 1163,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-threeByTwoSmallAt2X-v3.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-articleInline-v2.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-hpSmall-v2.jpg',
'height': 245,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-blogSmallInline-v2.jpg',
'height': 227,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-mediumFlexible177-v2.jpg',
'height': 266,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoSixteenByNineJumbo1600.jpg',
'height': 747,
'width': 1328,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/07/well/family/sl_prom15/sl_prom15-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'From Diapers to Dance Floor',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Proms', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Education (K-12)', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Teenagers and Adolescence',
'rank': 5,
'major': 'N'}],
'pub_date': '2018-06-12T09:00:03+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'subsection_name': 'Family',
'byline': {'original': 'By Josephine Sittenfeld',
'person': [{'firstname': 'Josephine',
'middlename': None,
'lastname': 'Sittenfeld',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/81beefb9-e2c1-53bc-a363-db206cd2990c',
'word_count': 671,
'uri': 'nyt://article/81beefb9-e2c1-53bc-a363-db206cd2990c'},
{'abstract': 'Those washable diapers were part and parcel of the vision I had of myself as a woman and a mother. And when I gave them up, I didn’t know who I was any more.',
'web_url': 'https://parenting.blogs.nytimes.com/2014/07/17/goodbye-to-cloth-diapers-and-ideal-motherhood/',
'snippet': 'Those washable diapers were part and parcel of the vision I had of myself as a woman and a mother. And when I gave them up, I didn’t know who I was any more.',
'lead_paragraph': 'I cloth diapered my daughter until she was 2, and she began using the toilet. And when I had my son, I was determined to continue. After all, I loved cloth diapering. I loved talking diapers with moms at the park and in forums online. I learned about washing strategies and making my own detergent and became fluent in diaper speak: soaker pads, Kushies, liners, Flips. And do you like AIOs or prefolds? ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoLarge.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-articleLarge.png',
'height': 397,
'width': 600,
'legacy': {'xlarge': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 397},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-blog480.png',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-blog427.png',
'height': 283,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-tmagArticle.png',
'height': 392,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-jumbo.png',
'height': 638,
'width': 964,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-blog225.png',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-master675.png',
'height': 447,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-master180.png',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-popup.png',
'height': 430,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-blog533.png',
'height': 353,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-tmagSF.png',
'height': 240,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-slide.png',
'height': 397,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-superJumbo.png',
'height': 638,
'width': 964,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-master495.png',
'height': 328,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-master315.png',
'height': 208,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-articleInline.png',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-hpSmall.png',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-blogSmallInline.png',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-mediumFlexible177.png',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-sfSpan.png',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-hpLarge.png',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-largeWidescreen573.png',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/17/us/motherlode-cloth-diaper/motherlode-cloth-diaper-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Goodbye to Cloth Diapers, and Ideal Motherhood',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Social Media', 'rank': 4, 'major': 'N'}],
'pub_date': '2014-07-17T16:40:05+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'U.S.',
'byline': {'original': 'By Lyz Lenz',
'person': [{'firstname': 'Lyz',
'middlename': None,
'lastname': 'Lenz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/680eb3c6-877c-56d7-9c8d-b7a189b9a92e',
'word_count': 816,
'uri': 'nyt://article/680eb3c6-877c-56d7-9c8d-b7a189b9a92e'}],
[{'abstract': 'Greg Garcia’s new Fox sitcom, “Raising Hope,” may be about a working-class clan, but Mr. Garcia says it’s more about family than class.',
'web_url': 'https://www.nytimes.com/2010/09/19/arts/television/19hope.html',
'snippet': 'Greg Garcia’s new Fox sitcom, “Raising Hope,” may be about a working-class clan, but Mr. Garcia says it’s more about family than class.',
'lead_paragraph': 'THERE’S a throwaway joke in the pilot episode of Greg Garcia’s new Fox comedy, “Raising Hope,” in which a news anchor on a television screen promises the conclusion to a story about “a small-time crook with a long list of wrongs he was making amends for.” But before that tale can be told, the television conks out \x97 or, more precisely, is conked over someone’s head \x97 and its ending is never revealed. ',
'print_section': 'AR',
'print_page': '25',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/19/arts/19hope-span/19hope-span-articleLarge.jpg',
'height': 356,
'width': 600,
'legacy': {'xlarge': 'images/2010/09/19/arts/19hope-span/19hope-span-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 356},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/19/arts/19hope-span/HOPE-1-jumbo.jpg',
'height': 661,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/19/arts/19hope-span/19hope-span-articleLarge.jpg',
'height': 356,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/19/arts/19hope-span/19hope-span-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/19/arts/19hope-span/19hope-span-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/09/19/arts/19hope-span/19hope-span-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'When Hope Is a Thing With Diapers',
'kicker': None,
'content_kicker': None,
'print_headline': 'When Hope Is a Thing With Diapers',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Neff, Lucas',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Television', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Fox Broadcasting Co',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Plimpton, Martha', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Garcia, Greg (1970- )',
'rank': 5,
'major': 'N'}],
'pub_date': '2010-09-17T18:26:14+0000',
'document_type': 'article',
'news_desk': '0',
'section_name': 'Arts',
'subsection_name': 'Television',
'byline': {'original': 'By Dave Itzkoff',
'person': [{'firstname': 'Dave',
'middlename': None,
'lastname': 'Itzkoff',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ddaccdf2-3d25-50fc-ad4d-53fc1ccb8a4c',
'word_count': 1220,
'uri': 'nyt://article/ddaccdf2-3d25-50fc-ad4d-53fc1ccb8a4c'},
{'abstract': 'Is a family really arguing about diapers, or something else entirely?',
'web_url': 'https://parenting.blogs.nytimes.com/2010/10/05/putting-diapers-on-a-toilet-trained-child/',
'snippet': 'Is a family really arguing about diapers, or something else entirely?',
'lead_paragraph': 'A reader, who we will call Daughter-in-Law, has a problem. She and her husband work full time, and their 3.5-year-old son is cared for by his grandmothers. DIL’s mother cares for the boy three to four days a week, and her mother-in-law cares for him the other day or two. Her mother-in-law is highly educated but she speaks very little English, and her son serves as translator between DIL and his mother.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Putting Diapers on a Toilet-Trained Child',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-10-05T20:00:08+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/6ba8879e-bfc6-5c5b-9f84-b0fef7770621',
'word_count': 527,
'uri': 'nyt://article/6ba8879e-bfc6-5c5b-9f84-b0fef7770621'},
{'abstract': 'By acquiring Quidsi, the parent company of Diapers.com, Amazon.com should be able compete in the baby-products sector in the way that its deal for Zappos.com made it the leader in the online shoe business.',
'web_url': 'https://dealbook.nytimes.com/2010/11/08/deal-solves-amazons-diaper-dilemma/',
'snippet': 'By acquiring Quidsi, the parent company of Diapers.com, Amazon.com should be able compete in the baby-products sector in the way that its deal for Zappos.com made it the leader in the online shoe business.',
'lead_paragraph': '8:15 p.m. | Updated Amazon.com is changing its diaper strategy.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Deal Gives Amazon a Diaper Strategy',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Mergers, Acquisitions and Divestitures',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'}],
'pub_date': '2010-11-08T20:05:50+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Thomas Kaplan',
'person': [{'firstname': 'Thomas',
'middlename': None,
'lastname': 'Kaplan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/e48f2c6c-c915-5dfc-a4d2-025d4da492ed',
'word_count': 438,
'uri': 'nyt://article/e48f2c6c-c915-5dfc-a4d2-025d4da492ed'},
{'abstract': '“Porfirio,” a sort of documentary-fiction hybrid by Alejandor Landes, has a script, but the story is that of its subject-actor, a paraplegic in Colombia with a startling past.',
'web_url': 'https://www.nytimes.com/2013/02/08/movies/porfirio-a-documentary-fiction-hybrid-by-alejandro-landes.html',
'snippet': '“Porfirio,” a sort of documentary-fiction hybrid by Alejandor Landes, has a script, but the story is that of its subject-actor, a paraplegic in Colombia with a startling past.',
'lead_paragraph': 'Vividly depicting the indignities of the flesh, “Porfirio” offers a harshly sensual portrait of a man imprisoned by paralysis and the callousness of the state.',
'print_section': 'C',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-articleLarge-v2.jpg',
'height': 367,
'width': 600,
'legacy': {'xlarge': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 367},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-blog480-v2.jpg',
'height': 294,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-blog427-v2.jpg',
'height': 261,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-tmagArticle-v2.jpg',
'height': 362,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-jumbo-v2.jpg',
'height': 626,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-popup-v2.jpg',
'height': 398,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-blog533-v2.jpg',
'height': 326,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-tmagSF-v2.jpg',
'height': 221,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-slide-v2.jpg',
'height': 367,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-superJumbo-v2.jpg',
'height': 1253,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-articleInline-v2.jpg',
'height': 116,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-hpSmall-v2.jpg',
'height': 100,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-blogSmallInline-v2.jpg',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-videoHpMedium-v2.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/arts/08RDP_PORFIRIO_SPAN/08RDP_PORFIRIO_SPAN-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A Truculent Man in a Wheelchair and a Diaper',
'kicker': 'Movie Review',
'content_kicker': None,
'print_headline': 'Porfirio',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Landes, Alejandro', 'rank': 2, 'major': 'N'},
{'name': 'creative_works',
'value': 'Porfirio (Movie)',
'rank': 3,
'major': 'N'}],
'pub_date': '2013-02-08T01:52:55+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Jeannette Catsoulis',
'person': [{'firstname': 'Jeannette',
'middlename': None,
'lastname': 'Catsoulis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/b329bc5d-0a4a-5699-a958-4fd24239b727',
'word_count': 246,
'uri': 'nyt://article/b329bc5d-0a4a-5699-a958-4fd24239b727'},
{'abstract': 'Diapers have traditionally had one primary sensor — the baby inside them, who cries when wet — but a company hopes to have its product collect data for a doctor.',
'web_url': 'https://bits.blogs.nytimes.com/2013/07/09/a-digital-diaper-for-tracking-health/',
'snippet': 'Diapers have traditionally had one primary sensor — the baby inside them, who cries when wet — but a company hopes to have its product collect data for a doctor.',
'lead_paragraph': 'Talk about changing with the times.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-articleLarge-v2.jpg',
'height': 365,
'width': 600,
'legacy': {'xlarge': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 365},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-blog480-v2.jpg',
'height': 292,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-blog427-v2.jpg',
'height': 260,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-tmagArticle-v2.jpg',
'height': 360,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-jumbo-v2.jpg',
'height': 499,
'width': 820,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-blog225-v2.jpg',
'height': 137,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-master675-v2.jpg',
'height': 411,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-master180-v2.jpg',
'height': 110,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-popup-v2.jpg',
'height': 396,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-blog533-v2.jpg',
'height': 324,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-tmagSF-v2.jpg',
'height': 220,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-slide-v2.jpg',
'height': 365,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-superJumbo-v2.jpg',
'height': 499,
'width': 820,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-master495-v2.jpg',
'height': 301,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-articleInline-v2.jpg',
'height': 116,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-hpSmall-v2.jpg',
'height': 99,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-blogSmallInline-v2.jpg',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-mediumFlexible177-v2.jpg',
'height': 108,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-sfSpan-v2.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-hpLarge-v2.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-largeWidescreen573-v2.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-videoHpMedium-v2.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/09/technology/09bits-diaper/09bits-diaper-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A Digital Diaper for Tracking Children’s Health',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Smartphones', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-07-09T12:00:29+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'byline': {'original': 'By Quentin Hardy',
'person': [{'firstname': 'Quentin',
'middlename': None,
'lastname': 'Hardy',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ea80db14-48f3-5af4-826a-ce2bbbfa3ae7',
'word_count': 425,
'uri': 'nyt://article/ea80db14-48f3-5af4-826a-ce2bbbfa3ae7'},
{'abstract': 'Marketing for Huggies Little Movers Slip-On Diapers is focusing on mothers of babies who have a tendency to squirm during a diaper change.',
'web_url': 'https://www.nytimes.com/2011/07/29/business/media/making-the-diaper-change-easier.html',
'snippet': 'Marketing for Huggies Little Movers Slip-On Diapers is focusing on mothers of babies who have a tendency to squirm during a diaper change.',
'lead_paragraph': 'IN a new commercial for Huggies Little Movers Slip-On Diapers, which have leg holes and slide on like underwear, a baby rolls over twice in the same direction as a voiceover begins, “Huggies presents a whole new way to change a rolling pin.” ',
'print_section': 'B',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/29/business/Adco/Adco-jumbo.jpg',
'height': 1024,
'width': 780,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/29/business/Adco/Adco-popup.jpg',
'height': 500,
'width': 381,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/29/business/Adco/Adco-articleInline.jpg',
'height': 250,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/29/business/Adco/Adco-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/07/29/business/Adco/Adco-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Making the Diaper Change Easier for the Changer',
'kicker': 'Advertising',
'content_kicker': None,
'print_headline': 'Making the Diaper Change Easier for the Changer',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Consumer Behavior', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-07-29T01:44:37+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Andrew Adam Newman',
'person': [{'firstname': 'Andrew',
'middlename': 'Adam',
'lastname': 'Newman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0c9d9fb4-6d6a-505a-a755-50558723bfd6',
'word_count': 968,
'uri': 'nyt://article/0c9d9fb4-6d6a-505a-a755-50558723bfd6'},
{'abstract': 'The BBC documentary “Born to Royalty” uses archival images of the royal family, going back to Queen Victoria, ostensibly to tell a story about changing royal parental styles.',
'web_url': 'https://www.nytimes.com/2013/07/19/movies/born-to-royalty-looks-at-the-rearing-of-britains-rulers.html',
'snippet': 'The BBC documentary “Born to Royalty” uses archival images of the royal family, going back to Queen Victoria, ostensibly to tell a story about changing royal parental styles.',
'lead_paragraph': 'Is there such a thing as a birth vulture? If there is, then that is both the subject and the format of the BBC documentary “Born to Royalty.” The film’s release this week was timed to coincide with Kate Middleton’s due date for the latest heir to the British throne.',
'print_section': 'C',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-articleLarge.jpg',
'height': 365,
'width': 600,
'legacy': {'xlarge': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 365},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-blog480.jpg',
'height': 292,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-blog427.jpg',
'height': 260,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-tmagArticle.jpg',
'height': 360,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-jumbo.jpg',
'height': 623,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-blog225.jpg',
'height': 137,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-master675.jpg',
'height': 410,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-master180.jpg',
'height': 109,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-popup.jpg',
'height': 395,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-blog533.jpg',
'height': 324,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-tmagSF.jpg',
'height': 220,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-slide.jpg',
'height': 365,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-superJumbo.jpg',
'height': 1245,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-master1050.jpg',
'height': 638,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-master495.jpg',
'height': 301,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-articleInline.jpg',
'height': 116,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-hpSmall.jpg',
'height': 99,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-blogSmallInline.jpg',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-mediumFlexible177.jpg',
'height': 108,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-sfSpan.jpg',
'height': 240,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-largeHorizontal375.jpg',
'height': 228,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/19/arts/19RDP_BORN_SPAN/BORN-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'From Diapers to Throne',
'kicker': 'Movie Review ',
'content_kicker': None,
'print_headline': 'Born to Royalty',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Royal Family', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Documentary Films and Programs',
'rank': 3,
'major': 'N'}],
'pub_date': '2013-07-18T22:37:29+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Miriam Bale',
'person': [{'firstname': 'Miriam',
'middlename': None,
'lastname': 'Bale',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/747992ed-8197-5b7e-9c25-76acaef4e5ab',
'word_count': 235,
'uri': 'nyt://article/747992ed-8197-5b7e-9c25-76acaef4e5ab'},
{'abstract': 'In an effort to save millions of dollars a year, the comptroller’s office is planning to pare the list of vendors who sell incontinence products to the state’s Medicaid patients. The vendors are not happy.',
'web_url': 'https://www.nytimes.com/2010/11/19/us/19ttdiapers.html',
'snippet': 'In an effort to save millions of dollars a year, the comptroller’s office is planning to pare the list of vendors who sell incontinence products to the state’s Medicaid patients. The vendors are not happy.',
'lead_paragraph': 'Call it a bad case of adult diaper drama: Vendors of incontinence products are facing off against the state comptroller’s office over plans to competitively bid underpads, catheters and other supplies for Medicaid patients. ',
'print_section': 'A',
'print_page': '23A',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Diaper Wars: State Wants Bid Process for Vendors',
'kicker': 'The Texas Tribune',
'content_kicker': None,
'print_headline': 'Diaper Wars: State Wants Bid Process For Vendors',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Frauds and Swindling',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Medicaid', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Incontinence', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Medicine and Health',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Texas', 'rank': 6, 'major': 'N'}],
'pub_date': '2010-11-19T00:45:28+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Emily Ramshaw',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Ramshaw',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/da1016bd-3ee6-5712-bb09-0299794ea3d2',
'word_count': 585,
'uri': 'nyt://article/da1016bd-3ee6-5712-bb09-0299794ea3d2'},
{'abstract': 'Workers at a California restaurant said inadequate safety measures, including unsuitable face coverings, were to blame for a Covid-19 outbreak.',
'web_url': 'https://www.nytimes.com/2021/08/12/business/mcdonalds-dog-diapers.html',
'snippet': 'Workers at a California restaurant said inadequate safety measures, including unsuitable face coverings, were to blame for a Covid-19 outbreak.',
'lead_paragraph': 'There have been many confrontations over workplace safety since the pandemic began. One of the strangest has just been resolved: the case of the dog diapers.',
'print_section': 'B',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-horizontalMediumAt2X.jpg',
'height': 3026,
'width': 4540,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-threeByTwoLargeAt2X.jpg',
'height': 2140,
'width': 3211,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/08/11/business/11mcdonalds/11mcdonalds-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'McDonald’s Franchise Settles Suit Involving ‘Dog Diaper’ Masks',
'kicker': None,
'content_kicker': None,
'print_headline': 'McDonald’s Franchise Resolves Dog Diapers Suit',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Workplace Hazards and Violations',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Fast Food Industry',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Suits and Litigation (Civil)',
'rank': 4,
'major': 'N'},
{'name': 'glocations',
'value': 'Oakland (Calif)',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': "McDonald's Corporation",
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Labor and Jobs', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Franchises', 'rank': 8, 'major': 'N'}],
'pub_date': '2021-08-12T07:00:08+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Noam Scheiber',
'person': [{'firstname': 'Noam',
'middlename': None,
'lastname': 'Scheiber',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9e4d543f-f24e-521d-a83a-8efe2d07e415',
'word_count': 984,
'uri': 'nyt://article/9e4d543f-f24e-521d-a83a-8efe2d07e415'},
{'abstract': 'Pampers, the Procter & Gamble brand, said it recognized the expanding role of fathers in parenting.',
'web_url': 'https://www.nytimes.com/2010/06/23/business/media/23adco.html',
'snippet': 'Pampers, the Procter & Gamble brand, said it recognized the expanding role of fathers in parenting.',
'lead_paragraph': 'FATHERS are changing more diapers than ever, but you would never guess that while walking down the diaper aisle, where packages feature mothers but never fathers.',
'print_section': 'B',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/23/business/23-ADCO/23-ADCO-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/23/business/23-ADCO/23-ADCO-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/23/business/23-ADCO/23-ADCO-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/06/23/business/23-ADCO/23-ADCO-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Getting Dad to Do Diaper (Buying) Duty',
'kicker': 'Advertising',
'content_kicker': None,
'print_headline': 'Getting Dad to Do Diaper (Buying) Duty',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Procter & Gamble Co',
'rank': 4,
'major': 'N'}],
'pub_date': '2010-06-23T00:34:07+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Andrew Adam Newman',
'person': [{'firstname': 'Andrew',
'middlename': 'Adam',
'lastname': 'Newman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d97974e3-103a-5713-b219-3660db80d1e5',
'word_count': 1037,
'uri': 'nyt://article/d97974e3-103a-5713-b219-3660db80d1e5'}],
[{'abstract': 'In an effort to save millions of dollars a year, the comptroller’s office is planning to pare the list of vendors who sell incontinence products to the state’s Medicaid patients. The vendors are not happy.',
'web_url': 'https://www.nytimes.com/2010/11/19/us/19ttdiapers.html',
'snippet': 'In an effort to save millions of dollars a year, the comptroller’s office is planning to pare the list of vendors who sell incontinence products to the state’s Medicaid patients. The vendors are not happy.',
'lead_paragraph': 'Call it a bad case of adult diaper drama: Vendors of incontinence products are facing off against the state comptroller’s office over plans to competitively bid underpads, catheters and other supplies for Medicaid patients. ',
'print_section': 'A',
'print_page': '23A',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Diaper Wars: State Wants Bid Process for Vendors',
'kicker': 'The Texas Tribune',
'content_kicker': None,
'print_headline': 'Diaper Wars: State Wants Bid Process For Vendors',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Frauds and Swindling',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Medicaid', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Incontinence', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Medicine and Health',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Texas', 'rank': 6, 'major': 'N'}],
'pub_date': '2010-11-19T00:45:28+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Emily Ramshaw',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Ramshaw',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/da1016bd-3ee6-5712-bb09-0299794ea3d2',
'word_count': 585,
'uri': 'nyt://article/da1016bd-3ee6-5712-bb09-0299794ea3d2'},
{'abstract': 'In Japan, adult diapers are now outselling baby diapers in some stores, signaling a big shift in population structure.',
'web_url': 'https://dotearth.blogs.nytimes.com/2013/12/23/japans-diaper-shift-and-global-population-trends/',
'snippet': 'In Japan, adult diapers are now outselling baby diapers in some stores, signaling a big shift in population structure.',
'lead_paragraph': 'Tokyo is still mostly a bustling, crowded supercity. But the quiet and emptiness I saw with my son this fall in the greenway adjacent to the Imperial Palace grounds in Tokyo could be more commonplace later in this century given the aging of the Japanese population. Indeed, a recent government study, cited last year in the Wall Street Journal’s Japan blog, projected that the city population “will peak at 13.35 million in 2020 — then drop steadily to 7.13 million in the year 2100.”',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-articleLarge.jpg',
'height': 292,
'width': 600,
'legacy': {'xlarge': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 292},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-blog480.jpg',
'height': 233,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-blog427.jpg',
'height': 208,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-tmagArticle.jpg',
'height': 288,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-jumbo.jpg',
'height': 498,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-blog225.jpg',
'height': 109,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-master675.jpg',
'height': 328,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-master180.jpg',
'height': 88,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-popup.jpg',
'height': 316,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-blog533.jpg',
'height': 259,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-tmagSF.jpg',
'height': 176,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-slide.jpg',
'height': 292,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-superJumbo.jpg',
'height': 996,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-master1050.jpg',
'height': 511,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-master495.jpg',
'height': 241,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-articleInline.jpg',
'height': 92,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-hpSmall.jpg',
'height': 79,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-blogSmallInline.jpg',
'height': 73,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-mediumFlexible177.jpg',
'height': 86,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/23/blogs/dottokyoempty/dottokyoempty-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Japan’s Diaper Shift and Global Population Trends',
'kicker': 'Dot Earth',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'JAPAN', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Population', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-12-23T21:56:51+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Opinion',
'byline': {'original': 'By Andrew C. Revkin',
'person': [{'firstname': 'Andrew',
'middlename': 'C.',
'lastname': 'Revkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2401c422-a0b6-5efd-a4eb-4ae60e84fa51',
'word_count': 455,
'uri': 'nyt://article/2401c422-a0b6-5efd-a4eb-4ae60e84fa51'},
{'abstract': 'Would a signed agreement designating which parent is in charge of which homework help?',
'web_url': 'https://parenting.blogs.nytimes.com/2012/05/25/diaper-duty-divided-and-decided-sign-here/',
'snippet': 'Would a signed agreement designating which parent is in charge of which homework help?',
'lead_paragraph': 'If you could sit down with your new love interest, romantic partner or spouse, and create an operating manual for your relationship, what would the rules be? Would writing them down give them more gravitas than a conversation over a glass of wine? Would you consult a couples’ counselor? Even use lawyers?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Diaper Duty, Divided and Decided: Sign Here.',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Dating and Courtship',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Marriages', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'}],
'pub_date': '2012-05-25T20:18:23+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Jan Hoffman',
'person': [{'firstname': 'Jan',
'middlename': None,
'lastname': 'Hoffman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/07faede9-fb6d-5eb9-b38b-18cfd494019d',
'word_count': 633,
'uri': 'nyt://article/07faede9-fb6d-5eb9-b38b-18cfd494019d'},
{'abstract': 'Over 56 million families have lost income since March 13, and diaper banks are straining to fill the need.',
'web_url': 'https://www.nytimes.com/2020/07/29/parenting/diaper-banks-formula-wipes-coronavirus.html',
'snippet': 'Over 56 million families have lost income since March 13, and diaper banks are straining to fill the need.',
'lead_paragraph': 'A few months ago, Chelsea Murgatroyd turned to her local diaper bank for a supply of diapers and wipes. Murgatroyd, 29, who has a 4-year-old and 8-month-old in Austin, Texas, co-owned a carpet cleaning business with her husband that opened two years ago. They worked mostly with hotels, but as soon as the coronavirus shutdown happened in March, “all our work was gone,” she said, and ultimately they had to shutter the business. Their savings went quickly. Murgatroyd found the Austin Diaper Bank through a Google search. “We needed help,” she said. “I have never used a charity in my life. That was very different and humbling for me.”',
'print_section': 'A',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-articleLarge-v2.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-popup-v2.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-blog480-v2.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-blog533-v2.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-blog427-v2.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-tmagSF-v2.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-tmagArticle-v2.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-slide-v2.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-jumbo-v2.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-superJumbo-v2.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-blog225-v2.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-master1050-v2.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-master675-v2.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-master495-v2.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-master180-v2.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-master315-v2.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-master768-v2.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumSquareAt3X-v2.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-largeHorizontalJumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-horizontalMediumAt2X-v2.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-threeByTwoLargeAt2X-v2.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-articleInline-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-hpSmall-v2.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-blogSmallInline-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mediumFlexible177-v2.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoSixteenByNineJumbo1600-v2.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-facebookJumbo-v3.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/29/multimedia/29parenting-diapers-update/29parenting-diapers-update-mobileMasterAt3x-v2.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Families Across the U.S. Struggle to Afford Diapers, Wipes and Formula',
'kicker': None,
'content_kicker': None,
'print_headline': 'Charities Step In as Parents Struggle to Afford Diapers, Wipes and Baby Formula',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Food Insecurity', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Unemployment', 'rank': 8, 'major': 'N'},
{'name': 'subject', 'value': 'Food Stamps', 'rank': 9, 'major': 'N'}],
'pub_date': '2020-07-29T12:38:13+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f57c3db1-1e10-50f4-867e-4985b4c3dcdc',
'word_count': 1019,
'uri': 'nyt://article/f57c3db1-1e10-50f4-867e-4985b4c3dcdc'},
{'abstract': '“Life as We Know It,” with Katherine Heigl and Josh Duhamel, never deviates from the romantic-comedy formula, but is well made for its corporate type.',
'web_url': 'https://www.nytimes.com/2010/10/08/movies/08life.html',
'snippet': '“Life as We Know It,” with Katherine Heigl and Josh Duhamel, never deviates from the romantic-comedy formula, but is well made for its corporate type.',
'lead_paragraph': 'It’s enough to say that the bland romantic comedy “Life as We Know It,” in which there is not a single deviation from formula, is well made for its corporate type. One sign that the movie, directed by Greg Berlanti from a screenplay by Ian Deitchman and Kristin Rusk Robinson, has its unimaginative head on straight is that its lead characters actually have jobs that the film explores in some depth.',
'print_section': 'C',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/08/arts/08life-span/LIFE-articleLarge.jpg',
'height': 315,
'width': 600,
'legacy': {'xlarge': 'images/2010/10/08/arts/08life-span/LIFE-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 315},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/08/arts/08life-span/LIFE-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/08/arts/08life-span/LIFE-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/08/arts/08life-span/LIFE-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/08/arts/08life-span/LIFE-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/08/arts/08life-span/LIFE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/10/08/arts/08life-span/LIFE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Finding Love Over Dirty Diapers and Sippy Cups',
'kicker': "Movie Review | 'Life as We Know It'",
'content_kicker': None,
'print_headline': 'Finding Love Over Dirty Diapers and Sippy Cups',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Heigl, Katherine', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Babies', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Duhamel, Josh', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Berlanti, Greg', 'rank': 5, 'major': 'N'},
{'name': 'creative_works',
'value': 'Life As We Know It (Movie)',
'rank': 6,
'major': 'N'}],
'pub_date': '2010-10-07T22:29:19+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Stephen Holden',
'person': [{'firstname': 'Stephen',
'middlename': None,
'lastname': 'Holden',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/8226e535-56ad-5707-bce8-22a9cdd08baf',
'word_count': 705,
'uri': 'nyt://article/8226e535-56ad-5707-bce8-22a9cdd08baf'},
{'abstract': 'Donte Palmer posted a photo online showing how he changes his son’s diaper in public restrooms without changing stations. Messages of support flooded in from fathers around the world.',
'web_url': 'https://www.nytimes.com/2018/10/05/us/father-changing-diaper-photo.html',
'snippet': 'Donte Palmer posted a photo online showing how he changes his son’s diaper in public restrooms without changing stations. Messages of support flooded in from fathers around the world.',
'lead_paragraph': 'When it comes to changing diapers, Donte Palmer has his technique down.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-superJumbo.jpg',
'height': 1968,
'width': 1967,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-master1050.jpg',
'height': 1051,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-horizontalMediumAt2X.jpg',
'height': 1312,
'width': 1967,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-threeByTwoLargeAt2X.jpg',
'height': 1312,
'width': 1967,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/05/health/05xp-diapers/05xp-diapers-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'A Father’s Photo Reignites the Conversation About Diaper Changing Stations',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Law and Legislation',
'rank': 4,
'major': 'N'},
{'name': 'glocations',
'value': 'Jacksonville (Fla)',
'rank': 5,
'major': 'N'},
{'name': 'persons',
'value': 'Palmer, Donte (1986- )',
'rank': 6,
'major': 'N'}],
'pub_date': '2018-10-05T10:52:39+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Melissa Gomez',
'person': [{'firstname': 'Melissa',
'middlename': None,
'lastname': 'Gomez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/eb209987-b8c9-5f38-afb0-69b20c3c336a',
'word_count': 630,
'uri': 'nyt://article/eb209987-b8c9-5f38-afb0-69b20c3c336a'},
{'abstract': 'Quidsi, the Amazon-owned e-commerce company behind Diapers.com, introduced Wag.com to sell pet supplies.',
'web_url': 'https://bits.blogs.nytimes.com/2011/07/06/would-you-like-some-dog-food-with-your-diapers/',
'snippet': 'Quidsi, the Amazon-owned e-commerce company behind Diapers.com, introduced Wag.com to sell pet supplies.',
'lead_paragraph': 'Quidsi, the company that started Diapers.com, is doing all it can to make sure people can run their errands without getting off the couch. Next up: Wag.com, which sells pet supplies.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Would You Like Some Dog Food With Your Diapers?',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Computers and the Internet',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 4,
'major': 'N'},
{'name': 'organizations', 'value': 'Quidsi Inc', 'rank': 5, 'major': 'N'}],
'pub_date': '2011-07-06T12:00:33+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3f345167-5d81-5a0e-ae8f-f5d3686cee81',
'word_count': 441,
'uri': 'nyt://article/3f345167-5d81-5a0e-ae8f-f5d3686cee81'},
{'abstract': 'Cotton or cellulose fluff, cost savings or convenience, laundry or landfill: For some new parents, choosing between using cloth or disposable diapers can feel like a big decision. How do you know which kind of diaper will work best for your family? Advocates for both cloth and disposable diapers make strident and often conflicting claims...',
'web_url': 'https://www.nytimes.com/wirecutter/blog/cloth-vs-disposable-diapers/',
'snippet': 'Cotton or cellulose fluff, cost savings or convenience, laundry or landfill: For some new parents, choosing between using cloth or disposable diapers can feel like a big decision. How do you know which kind of diaper will work best for your family...',
'lead_paragraph': 'Cotton or cellulose fluff, cost savings or convenience, laundry or landfill: For some new parents, choosing between using cloth or disposable diapers can feel like a big decision. How do you know which kind of diaper will work best for your family? Advocates for both cloth and disposable diapers make strident and often conflicting claims...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-vs-disposable-diaper-3x2-side-by-side-lowres-.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-vs-disposable-diaper-3x2-side-by-side-lowres-.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-vs-disposable-diaper-3x2-side-by-side-lowres-.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/05/cloth-vs-disposable-diaper-3x2-side-by-side-lowres-.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'Cloth vs. Disposable Diapers: Which Kind Should I Use?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2018-05-15T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/79223bc9-7138-5e79-8f2e-b5c9ed4a15b6',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/79223bc9-7138-5e79-8f2e-b5c9ed4a15b6'},
{'abstract': 'The malfunctioning toilet was first detected in another SpaceX capsule last month.',
'web_url': 'https://www.nytimes.com/2021/11/08/science/spacex-diapers-toilet.html',
'snippet': 'The malfunctioning toilet was first detected in another SpaceX capsule last month.',
'lead_paragraph': 'Last week, the SpaceX Crew-2 capsule was all clear to make its trek back home, but one thing stood in the way: its toilet. While the vehicle had been cleared to return to Earth, the toilet remained offline for the duration of the trip.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-horizontalMediumAt2X.jpg',
'height': 3712,
'width': 5568,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-threeByTwoLargeAt2X.jpg',
'height': 3712,
'width': 5568,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/08spacex-landing-toilet-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'The toilet on the Crew Dragon capsule was out of service. The crew had to use diapers.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'National Aeronautics and Space Administration',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Space Exploration Technologies Corp',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Space and Astronomy',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Private Spaceflight',
'rank': 6,
'major': 'N'}],
'pub_date': '2021-11-09T00:33:38+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Science',
'byline': {'original': 'By Joey Roulette',
'person': [{'firstname': 'Joey',
'middlename': None,
'lastname': 'Roulette',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bef8ac68-c35f-5881-8058-9264d01ae359',
'word_count': 578,
'uri': 'nyt://article/bef8ac68-c35f-5881-8058-9264d01ae359'},
{'abstract': 'Keeping a squirmy infant clean is a task worthy of Sisyphus—the minute you get them washed, brushed, and diapered, it’s time to start all over. But the right tools can make grooming your kid a little less of a battle. From the best diapering supplies and tiny scissors that keep sharp nails at bay to...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/baby-care-essentials/',
'snippet': 'Keeping a squirmy infant clean is a task worthy of Sisyphus—the minute you get them washed, brushed, and diapered, it’s time to start all over. But the right tools can make grooming your kid a little less of a battle. From the best diapering suppl...',
'lead_paragraph': 'Keeping a squirmy infant clean is a task worthy of Sisyphus—the minute you get them washed, brushed, and diapered, it’s time to start all over. But the right tools can make grooming your kid a little less of a battle. From the best diapering supplies and tiny scissors that keep sharp nails at bay to...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/10/babycare-2048px-6075-3x2-1.jpeg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/10/babycare-2048px-6075-3x2-1.jpeg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/10/babycare-2048px-6075-3x2-1.jpeg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/10/babycare-2048px-6075-3x2-1.jpeg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'Our Favorite Diaper Creams, Nail and Hair Tools, and Other Baby Care Essentials',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2020-06-08T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/c20cbff8-740c-5ba1-9da3-8a9f46b000b4',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/c20cbff8-740c-5ba1-9da3-8a9f46b000b4'}],
[{'abstract': 'Vinit Bharara made his fortune selling Pampers and Huggies on the web. Now he wants to capitalize on digital content with a new website, Cafe.com.',
'web_url': 'https://www.nytimes.com/2014/06/23/business/media/disrupter-of-the-diaper-market-turns-to-journalism.html',
'snippet': 'Vinit Bharara made his fortune selling Pampers and Huggies on the web. Now he wants to capitalize on digital content with a new website, Cafe.com.',
'lead_paragraph': 'Vinit Bharara made his fortune selling Pampers and Huggies. Now he wants to capitalize on a business fast becoming as commodified as diapers: digital content. ',
'print_section': 'B',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/06/23/business/23cafe/23cafe-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/06/23/business/23cafe/23cafe-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/06/23/business/23cafe/23cafe-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/23/business/23cafe/23cafe-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Diapers.com Co-Founder Launches Online Publication',
'kicker': 'Media Decoder',
'content_kicker': None,
'print_headline': 'Web Entrepreneur Turns From Diapers to Journalism',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Cafe.com',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Bharara, Vinit', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'News and News Media',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Diapers.com',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-06-23T01:28:41+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Sydney Ember',
'person': [{'firstname': 'Sydney',
'middlename': None,
'lastname': 'Ember',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e17a1264-590e-5035-b2de-b4e65fe5ab66',
'word_count': 438,
'uri': 'nyt://article/e17a1264-590e-5035-b2de-b4e65fe5ab66'},
{'abstract': 'Retailers used to absorb much of the cost of goods when suppliers raised prices. Now, the difference is being passed on to shoppers.',
'web_url': 'https://www.nytimes.com/2021/04/29/business/consumer-goods-prices.html',
'snippet': 'Retailers used to absorb much of the cost of goods when suppliers raised prices. Now, the difference is being passed on to shoppers.',
'lead_paragraph': 'Procter & Gamble is raising prices on items like Pampers and Tampax in September. Kimberly-Clark said in March that it will raise prices on Scott toilet paper, Huggies and Pull-Ups in June, a move that is “necessary to help offset significant commodity cost inflation.”',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-horizontalMediumAt2X.jpg',
'height': 8333,
'width': 12500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-threeByTwoLargeAt2X.jpg',
'height': 8333,
'width': 12500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/04/30/business/30consumer-prices-combo-print1/29consumer-prices-combo-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Diapers, Cereal and, Yes, Toilet Paper Are Going to Get More Expensive',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Price Is Right, And Rising',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'United States Economy',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Inflation (Economics)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Bureau of Labor Statistics',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'General Mills Inc',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Procter & Gamble Co',
'rank': 8,
'major': 'N'},
{'name': 'subject',
'value': 'Consumer Price Index',
'rank': 9,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 10,
'major': 'N'}],
'pub_date': '2021-04-29T09:00:30+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Gillian Friedman',
'person': [{'firstname': 'Gillian',
'middlename': None,
'lastname': 'Friedman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0011e5ed-6ac2-5683-bdc4-ef7da16ec44d',
'word_count': 822,
'uri': 'nyt://article/0011e5ed-6ac2-5683-bdc4-ef7da16ec44d'},
{'abstract': 'An animated feature starring a newborn with an oh-so-familiar voice may confuse the kiddies, but grown-ups should get a kick out of it.',
'web_url': 'https://www.nytimes.com/2017/03/30/movies/the-boss-baby-review-alec-baldwin.html',
'snippet': 'An animated feature starring a newborn with an oh-so-familiar voice may confuse the kiddies, but grown-ups should get a kick out of it.',
'lead_paragraph': 'The animated feature “The Boss Baby” has some hilarious moments. If, that is, you’re a grown-up.',
'print_section': 'C',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-articleLarge.jpg',
'height': 396,
'width': 600,
'legacy': {'xlarge': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 396},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-blog480.jpg',
'height': 317,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-blog427.jpg',
'height': 282,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-tmagArticle.jpg',
'height': 391,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-jumbo.jpg',
'height': 677,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-blog225.jpg',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-master675.jpg',
'height': 446,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-master180.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-master768.jpg',
'height': 508,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-popup.jpg',
'height': 430,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-blog533.jpg',
'height': 352,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-tmagSF.jpg',
'height': 239,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-slide.jpg',
'height': 396,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-superJumbo.jpg',
'height': 1243,
'width': 1881,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-master1050.jpg',
'height': 694,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-master495.jpg',
'height': 327,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-master315.jpg',
'height': 208,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/03/31/arts/31BOSSbaby/31BOSSbaby-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Review: ‘The Boss Baby’ Puts Alec Baldwin in Diapers, Sort Of',
'kicker': None,
'content_kicker': None,
'print_headline': 'Baby Talk for Grown-Ups',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'The Boss Baby (Movie)',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'McGrath, Tom (1964- )',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Baldwin, Alec', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Animated Films', 'rank': 5, 'major': 'N'}],
'pub_date': '2017-03-30T21:17:41+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Neil Genzlinger',
'person': [{'firstname': 'Neil',
'middlename': None,
'lastname': 'Genzlinger',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/786d9fa5-6852-5e24-bdd7-b20f89a51cfc',
'word_count': 267,
'uri': 'nyt://article/786d9fa5-6852-5e24-bdd7-b20f89a51cfc'},
{'abstract': 'As the first black actor to star as Billy Bigelow on Broadway, Mr. Henry is changing theater, while a newborn son is changing him.',
'web_url': 'https://www.nytimes.com/2018/05/10/theater/joshua-henry-carousel-billy-bigelow.html',
'snippet': 'As the first black actor to star as Billy Bigelow on Broadway, Mr. Henry is changing theater, while a newborn son is changing him.',
'lead_paragraph': 'Samson Peter Henry, his parents’ first child, made his debut on the cusp of spring, at around 9 o’clock one morning this March. For his mother, Cathryn Henry, a postpartum nurse at New York-Presbyterian Hospital, it was a kind of Have Your Child at Work situation.',
'print_section': 'AR',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/05/13/arts/13henry10/13henry10-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/05/13/arts/13henry10/13henry10-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-horizontalMediumAt2X.jpg',
'height': 2678,
'width': 4016,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/05/13/arts/13henry10/13henry10-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-threeByTwoLargeAt2X.jpg',
'height': 2678,
'width': 4016,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-articleInline.jpg',
'height': 123,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-hpSmall.jpg',
'height': 106,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-blogSmallInline.jpg',
'height': 98,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-mediumFlexible177.jpg',
'height': 115,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/13/arts/13henry10/13henry10-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Joshua Henry Does Whatever It Takes, in ‘Carousel’ and as a Father',
'kicker': None,
'content_kicker': None,
'print_headline': 'He’s Changed Theater (And a Few Diapers)',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Tony Awards (Theater Awards)',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Henry, Joshua', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Mueller, Jessie', 'rank': 4, 'major': 'N'},
{'name': 'creative_works',
'value': 'Carousel (Play)',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'Tesori, Jeanine', 'rank': 6, 'major': 'N'}],
'pub_date': '2018-05-10T09:00:05+0000',
'document_type': 'article',
'news_desk': 'Arts&Leisure',
'section_name': 'Theater',
'byline': {'original': 'By Laura Collins-Hughes',
'person': [{'firstname': 'Laura',
'middlename': None,
'lastname': 'Collins-Hughes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a6712714-265a-5009-8626-d9384bec2535',
'word_count': 1918,
'uri': 'nyt://article/a6712714-265a-5009-8626-d9384bec2535'},
{'abstract': 'Panic buying has left stores and diaper banks empty of baby essentials as shutdowns and quarantines expand across the country.',
'web_url': 'https://www.nytimes.com/2020/03/30/parenting/coronavirus-baby-formula-shortages-wipes-diapers.html',
'snippet': 'Panic buying has left stores and diaper banks empty of baby essentials as shutdowns and quarantines expand across the country.',
'lead_paragraph': 'Until Catie Weimer’s baby, Arlo, was 4 months old, he would scream and pull his head away from the bottle every time she tried to feed him formula. If she got any of it into him, he’d vomit. He was born at 37 weeks, and she was already worried that he was on the small side when she learned that he had a milk protein allergy and was put on the hypoallergenic formula Alimentum. ',
'print_section': 'A',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-articleLarge.jpg',
'height': 401,
'width': 600,
'legacy': {'xlarge': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 401},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-slide.jpg',
'height': 401,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-jumbo.jpg',
'height': 684,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-superJumbo.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-master675.jpg',
'height': 451,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-master768.jpg',
'height': 513,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumSquareAt3X-v2.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-largeHorizontalJumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-horizontalMediumAt2X-v2.jpg',
'height': 3848,
'width': 5776,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-thumbWide-v4.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-thumbWide-v4.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoThumb-v4.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoLarge-v4.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumThreeByTwo210-v4.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumThreeByTwo225-v4.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumThreeByTwo440-v4.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumThreeByTwo252-v4.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumThreeByTwo378-v4.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-threeByTwoLargeAt2X-v4.jpg',
'height': 3844,
'width': 5770,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-threeByTwoMediumAt2X-v4.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-threeByTwoSmallAt2X-v4.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine3000-v2.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoSixteenByNineJumbo1600-v2.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-facebookJumbo-v2.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/30/multimedia/30parenting-Arlo/30parenting-Arlo-mobileMasterAt3x.jpg',
'height': 1202,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Families Scramble to Find Baby Formula, Diapers and Wipes',
'kicker': None,
'content_kicker': None,
'print_headline': 'Coping When Essential Supplies Are Hard to Find',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Infant Formulas', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Baby Foods', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Shortages', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 8,
'major': 'N'}],
'pub_date': '2020-03-30T09:00:17+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/261db525-e060-569d-b8d6-dc13f3c0741d',
'word_count': 1356,
'uri': 'nyt://article/261db525-e060-569d-b8d6-dc13f3c0741d'},
{'abstract': 'Season 2 of this Amazon Prime show picks up with its stars expecting a baby a couple of years after an unplanned pregnancy led, eventually, to romance.',
'web_url': 'https://www.nytimes.com/2016/04/07/arts/television/catastrophe-season-2-tv-review.html',
'snippet': 'Season 2 of this Amazon Prime show picks up with its stars expecting a baby a couple of years after an unplanned pregnancy led, eventually, to romance.',
'lead_paragraph': 'Love is a mess. It’s awkward and clumsy and can lead to the uncomfortable gestation of a small human.',
'print_section': 'C',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-articleLarge.jpg',
'height': 401,
'width': 600,
'legacy': {'xlarge': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 401},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-jumbo.jpg',
'height': 684,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-master675.jpg',
'height': 451,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-master768.jpg',
'height': 513,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-slide.jpg',
'height': 401,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-superJumbo.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/07/arts/07CATASTROPHE/07CATASTROPHE-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': '‘Catastrophe’ Adds a New Wrinkle to Its Ribald Love Story: Children',
'kicker': 'Critic’s Notebook',
'content_kicker': None,
'print_headline': 'Love Among the Dirty Diapers',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Web-Original Programming',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Television', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Delaney, Rob', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Horgan, Sharon (1970- )',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 6,
'major': 'N'},
{'name': 'creative_works',
'value': 'Catastrophe (TV Program)',
'rank': 7,
'major': 'N'}],
'pub_date': '2016-04-06T20:21:30+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Television',
'byline': {'original': 'By James Poniewozik',
'person': [{'firstname': 'James',
'middlename': None,
'lastname': 'Poniewozik',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/c4aea715-1558-5e60-8330-c5a748a18f72',
'word_count': 678,
'uri': 'nyt://article/c4aea715-1558-5e60-8330-c5a748a18f72'},
{'abstract': 'Quidsi’s campaign for its new Web site, Soap.com, tries to create a brand identity for a one-stop shopping destination.',
'web_url': 'https://www.nytimes.com/2010/11/01/business/media/01adnewsletter1.html',
'snippet': 'Quidsi’s campaign for its new Web site, Soap.com, tries to create a brand identity for a one-stop shopping destination.',
'lead_paragraph': '“A little bit of soap,” the old song goes, “will never wash away my tears.” But what might a whole lot of soap do? Not to mention detergent, paper towels, sponges, disinfecting wipes and more than 25,000 other health, beauty and household products.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/01/business/media/01adnewsletter190/01adnewsletter190-jumbo.jpg',
'height': 446,
'width': 576,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/01/business/media/01adnewsletter190/01adnewsletter190-popup.jpg',
'height': 446,
'width': 576,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/01/business/media/01adnewsletter190/01adnewsletter190-articleInline.jpg',
'height': 147,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/01/business/media/01adnewsletter190/01adnewsletter190-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/11/01/business/media/01adnewsletter190/01adnewsletter190-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'First It Was Diapers. Now Shop for Soap (and Similar) Online.',
'kicker': 'Campaign Spotlight',
'content_kicker': None,
'print_headline': 'E-Commerce Web Site Hopes to Clean Up',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Cosmetics and Toiletries',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 3,
'major': 'N'}],
'pub_date': '2010-11-01T17:30:23+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Stuart Elliott',
'person': [{'firstname': 'Stuart',
'middlename': None,
'lastname': 'Elliott',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d4eab477-8ca0-5503-859a-b1790e355c3d',
'word_count': 1297,
'uri': 'nyt://article/d4eab477-8ca0-5503-859a-b1790e355c3d'},
{'abstract': 'For many female health workers on the front line in China, even things like menstruation have become an occupational hazard.',
'web_url': 'https://www.nytimes.com/2020/02/26/business/coronavirus-china-nurse-menstruation.html',
'snippet': 'For many female health workers on the front line in China, even things like menstruation have become an occupational hazard.',
'lead_paragraph': 'Zhang Wendan and her family were celebrating the Lunar New Year when the 27-year-old nurse got a notice from the hospital: report back to work and join the battle to contain the coronavirus outbreak.',
'print_section': 'A',
'print_page': '13',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-articleLarge.jpg',
'height': 800,
'width': 600,
'legacy': {'xlarge': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 800},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-popup.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-blog480.jpg',
'height': 640,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-blog533.jpg',
'height': 711,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-blog427.jpg',
'height': 569,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-tmagSF.jpg',
'height': 483,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-tmagArticle.jpg',
'height': 789,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-slide.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-jumbo.jpg',
'height': 1024,
'width': 768,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-superJumbo.jpg',
'height': 2048,
'width': 1536,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-blog225.jpg',
'height': 300,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-master1050.jpg',
'height': 1400,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-master675.jpg',
'height': 900,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-master495.jpg',
'height': 660,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-master180.jpg',
'height': 240,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-master315.jpg',
'height': 420,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-master768.jpg',
'height': 1024,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-horizontalMediumAt2X.jpg',
'height': 1544,
'width': 2316,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-threeByTwoLargeAt2X.jpg',
'height': 1544,
'width': 2316,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-articleInline.jpg',
'height': 253,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-hpSmall.jpg',
'height': 217,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-blogSmallInline.jpg',
'height': 201,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-mediumFlexible177.jpg',
'height': 236,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/26life-nurse-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/02/26/world/26life-nurse-1/merlin_169543941_71bec77f-0255-4737-9c22-2fd0d84c1285-mobileMasterAt3x.jpg',
'height': 2400,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Shaved Heads, Adult Diapers: Life as a Nurse in the Coronavirus Outbreak',
'kicker': 'Inside the Outbreak',
'content_kicker': None,
'print_headline': 'For Nurses on Front Line, Little Chores Are Big Hazards',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Hubei Province (China)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Nursing and Nurses',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Menstruation', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Hospitals', 'rank': 6, 'major': 'N'}],
'pub_date': '2020-02-26T07:39:22+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Alexandra Stevenson',
'person': [{'firstname': 'Alexandra',
'middlename': None,
'lastname': 'Stevenson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d06513c0-3e3b-5fd0-abe5-d5648d09a0a4',
'word_count': 591,
'uri': 'nyt://article/d06513c0-3e3b-5fd0-abe5-d5648d09a0a4'},
{'abstract': 'Many families wait too long to open accounts and lose out on a chance to let their money grow more, Morningstar reported.',
'web_url': 'https://www.nytimes.com/2019/11/15/your-money/average-start-for-529-college-savings-age-7-is-costly-study-finds.html',
'snippet': 'Many families wait too long to open accounts and lose out on a chance to let their money grow more, Morningstar reported.',
'lead_paragraph': 'Many families wait too long to open 529 college savings accounts, which means they miss out on the maximum benefits from the accounts, a new analysis finds.',
'print_section': 'B',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-superJumbo.jpg',
'height': 2048,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-horizontalMediumAt2X.jpg',
'height': 1666,
'width': 2500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-threeByTwoLargeAt2X.jpg',
'height': 1666,
'width': 2500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/15/business/15Adviser-illo/15Adviser-illo-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Average Start for 529 College Savings (Age 7) Is Costly, Study Finds',
'kicker': None,
'content_kicker': None,
'print_headline': 'Shopping for Diapers? Don’t Forget Tuition and Books',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Colleges and Universities',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Financial Aid (Education)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Tax Credits, Deductions and Exemptions',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Savings', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Federal Taxes (US)',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Stocks and Bonds', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Employee Fringe Benefits',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 8, 'major': 'N'},
{'name': 'subject', 'value': 'Personal Finances', 'rank': 9, 'major': 'N'},
{'name': 'subject', 'value': 'Tuition', 'rank': 10, 'major': 'N'},
{'name': 'organizations',
'value': 'College Board',
'rank': 11,
'major': 'N'},
{'name': 'organizations',
'value': 'College Savings Plans Network',
'rank': 12,
'major': 'N'},
{'name': 'organizations',
'value': 'Morningstar Inc',
'rank': 13,
'major': 'N'}],
'pub_date': '2019-11-15T14:00:08+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Your Money',
'byline': {'original': 'By Ann Carrns',
'person': [{'firstname': 'Ann',
'middlename': None,
'lastname': 'Carrns',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/af286002-b1ef-58a7-91af-823b03111ff6',
'word_count': 1024,
'uri': 'nyt://article/af286002-b1ef-58a7-91af-823b03111ff6'},
{'abstract': 'The governor dismissed three members of her cabinet, but some Puerto Ricans still took to the streets in protest.',
'web_url': 'https://www.nytimes.com/2020/01/20/us/puerto-rico-protests-emergency-supplies.html',
'snippet': 'The governor dismissed three members of her cabinet, but some Puerto Ricans still took to the streets in protest.',
'lead_paragraph': 'SAN JUAN, P.R. — The man streaming on Facebook Live looked straight into his cellphone camera and promised that the footage to come would be outrageous. “Share what you’re about to see,” he urged his viewers.',
'print_section': 'A',
'print_page': '13',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-superJumbo.jpg',
'height': 1333,
'width': 2000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-horizontalMediumAt2X.jpg',
'height': 1333,
'width': 2000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/01/20/us/20PR-protest/20PR-protest-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-threeByTwoLargeAt2X-v2.jpg',
'height': 717,
'width': 1076,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-threeByTwoMediumAt2X-v2.jpg',
'height': 717,
'width': 1076,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/merlin_167461191_9b11b76e-c426-431f-bc06-889c7e23daa6-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/20/us/20PR-protest/20PR-protest-mobileMasterAt3x.jpg',
'height': 1333,
'width': 1333,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Video Reveals Unused Earthquake Aid in Puerto Rico: ‘We Are Outraged’',
'kicker': None,
'content_kicker': None,
'print_headline': 'Water, Diapers, Tarps and Gas: Puerto Rico Botches Delivery of Aid',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Humanitarian Aid',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Hurricane Maria (2017)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Demonstrations, Protests and Riots',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Earthquakes', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Federal Emergency Management Agency',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Puerto Rico', 'rank': 6, 'major': 'N'},
{'name': 'persons',
'value': 'Vazquez Garced, Wanda',
'rank': 7,
'major': 'N'}],
'pub_date': '2020-01-20T20:09:12+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Alejandra Rosa and Patricia Mazzei',
'person': [{'firstname': 'Alejandra',
'middlename': None,
'lastname': 'Rosa',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Patricia',
'middlename': None,
'lastname': 'Mazzei',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e2b22e02-fdcc-58c7-a97a-8d47f6f31c8c',
'word_count': 1230,
'uri': 'nyt://article/e2b22e02-fdcc-58c7-a97a-8d47f6f31c8c'}],
[{'abstract': 'Javier Milei warned that things would get worse before they got better. Now Argentines are living it.',
'web_url': 'https://www.nytimes.com/2023/12/23/world/americas/argentina-economy-inflation-javier-milei.html',
'snippet': 'Javier Milei warned that things would get worse before they got better. Now Argentines are living it.',
'lead_paragraph': 'Over the past two weeks, the owner of a hip wine bar in Buenos Aires saw the price of beef soar 73 percent, while the zucchini he puts in salads rose 140 percent. An Uber driver paid 60 percent more to fill her tank. And a father said he spent twice as much on diapers for his toddler than he did last month.',
'print_section': 'A',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumSquareAt3X.jpg',
'height': 1797,
'width': 1797,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-horizontalMediumAt2X.jpg',
'height': 1797,
'width': 2695,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-threeByTwoLargeAt2X.jpg',
'height': 1797,
'width': 2695,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/23/multimedia/23argentina-economy-02-mgfq/23argentina-economy-02-mgfq-mobileMasterAt3x.jpg',
'height': 1797,
'width': 1796,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Under Argentina’s New President, Fuel Is Up 60%, and Diaper Prices Have Doubled',
'kicker': None,
'content_kicker': None,
'print_headline': 'Under New President, Argentines Walloped by Eye-Watering Inflation',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'ARGENTINA',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Currency', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Wages and Salaries',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Inflation (Economics)',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'Milei, Javier', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 8,
'major': 'N'}],
'pub_date': '2023-12-23T10:04:47+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By Daniel Politi and Lucía Cholakian Herrera',
'person': [{'firstname': 'Daniel',
'middlename': None,
'lastname': 'Politi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Lucía',
'middlename': 'Cholakian',
'lastname': 'Herrera',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9ffa5748-1d51-57ad-9d84-57ec89e73a1f',
'word_count': 1376,
'uri': 'nyt://article/9ffa5748-1d51-57ad-9d84-57ec89e73a1f'},
{'abstract': 'Waste from adult diapers is growing by tens of thousands of tons a year in Japan. One town may have a solution: recycle it into fuel pellets.',
'web_url': 'https://www.nytimes.com/2021/11/15/world/asia/adult-diapers-japan.html',
'snippet': 'Waste from adult diapers is growing by tens of thousands of tons a year in Japan. One town may have a solution: recycle it into fuel pellets.',
'lead_paragraph': 'HOUKI, Japan — The restorative waters that flow into the public baths in this town near the coast of western Japan originate from hot springs more than two-thirds of a mile below ground. At the surface, before the water bubbles out of the spouts, it is further heated to 107 degrees Fahrenheit — an ideal temperature for cleansing and soaking weary muscles.',
'print_section': 'A',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-horizontalMediumAt2X.jpg',
'height': 5302,
'width': 7952,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-threeByTwoLargeAt2X.jpg',
'height': 5302,
'width': 7952,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/merlin_196209834_34947470-4158-4b8e-869e-bfce4dc89ab3-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/11/world/00japan-diapers1/00japan-diapers1-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'A New Source of Fuel in an Aging Japan: Adult Incontinence',
'kicker': None,
'content_kicker': None,
'print_headline': 'In an Aging Japan, Turning Mountains Of Waste Into Fuel',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Japan', 'rank': 5, 'major': 'N'}],
'pub_date': '2021-11-15T10:00:23+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Motoko Rich and Makiko Inoue',
'person': [{'firstname': 'Motoko',
'middlename': None,
'lastname': 'Rich',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Makiko',
'middlename': None,
'lastname': 'Inoue',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3ca029a3-32f6-586d-bc00-857eabf04e56',
'word_count': 1169,
'uri': 'nyt://article/3ca029a3-32f6-586d-bc00-857eabf04e56'},
{'abstract': 'Designer diapers join the repertory of child-as-prop tools.',
'web_url': 'https://www.nytimes.com/2010/08/01/magazine/01fob-consumed-t.html',
'snippet': 'Designer diapers join the repertory of child-as-prop tools.',
'lead_paragraph': 'When I heard that Huggies had begun to sell a “limited-edition jeans diaper,” and that its bigger rival Pampers was offering a new diaper line carrying the imprimatur of the fashion designer Cynthia Rowley, it struck me as a throwback. Could there be a more absurd example of the sort of mindless conspicuous consumption that marked the years before “credit default swap” entered the national vocabulary? I seem to remember a lot of declarations that the urge to buy anything signaling nonthrifty behavior had been left behind as decisively as a house with an upside-down mortgage. Even TV commercials said so!',
'print_section': 'MM',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/01/magazine/01fob-consumed/01fob-consumed-t_CA0-articleInline.jpg',
'height': 822,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/01/magazine/01fob-consumed/01fob-consumed-t_CA0-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/08/01/magazine/01fob-consumed/01fob-consumed-t_CA0-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'The Born Identity',
'kicker': 'Consumed',
'content_kicker': None,
'print_headline': 'The Born Identity',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Diapers',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 3,
'major': 'N'}],
'pub_date': '2010-07-30T14:57:16+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Rob Walker',
'person': [{'firstname': 'Rob',
'middlename': None,
'lastname': 'Walker',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d10bf491-0008-5774-8f1a-7d2e0a66aff2',
'word_count': 861,
'uri': 'nyt://article/d10bf491-0008-5774-8f1a-7d2e0a66aff2'},
{'abstract': 'The products that have proved particularly troublesome: diapers, plastic bags and juice boxes.',
'web_url': 'https://www.nytimes.com/2016/03/29/science/three-headaches-for-the-recycling-industry.html',
'snippet': 'The products that have proved particularly troublesome: diapers, plastic bags and juice boxes.',
'lead_paragraph': 'The most advanced recycling operations in the world divert 75 percent or more of community waste away from landfills. In their efforts to achieve 100 percent recycling, or so-called Zero Waste, three products have proved particularly stubborn:',
'print_section': 'D',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/03/26/science/29recycleside/29recycleside-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-articleLarge.jpg',
'height': 337,
'width': 600,
'legacy': {'xlarge': 'images/2016/03/26/science/29recycleside/29recycleside-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 337},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-blog480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-blog427.jpg',
'height': 240,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-tmagArticle.jpg',
'height': 333,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-jumbo.jpg',
'height': 576,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-blog225.jpg',
'height': 127,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-master675.jpg',
'height': 380,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-master180.jpg',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-master768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-popup.jpg',
'height': 366,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-blog533.jpg',
'height': 300,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-tmagSF.jpg',
'height': 204,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-slide.jpg',
'height': 337,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-superJumbo.jpg',
'height': 1152,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-master1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-master495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-master315.jpg',
'height': 177,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-articleInline.jpg',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-hpSmall.jpg',
'height': 92,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-mediumFlexible177.jpg',
'height': 100,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/03/26/science/29recycleside/29recycleside-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/26/science/29recycleside/29recycleside-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Three Headaches for the Recycling Industry',
'kicker': None,
'content_kicker': None,
'print_headline': 'Three Headaches to Recycle',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Plastics', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Plastic Bags', 'rank': 6, 'major': 'N'}],
'pub_date': '2016-03-25T17:48:09+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Science',
'byline': {'original': 'By Matt Richtel',
'person': [{'firstname': 'Matt',
'middlename': None,
'lastname': 'Richtel',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/44856d86-3119-5669-85dd-0879b2f9dded',
'word_count': 626,
'uri': 'nyt://article/44856d86-3119-5669-85dd-0879b2f9dded'},
{'abstract': 'The second graphic novel in Dav Pilkey’s “Super Diaper Baby” spinoff of his wildly popular “Captain Underpants” series.',
'web_url': 'https://www.nytimes.com/2011/06/29/books/review/childrens-books-super-diaper-baby-2-by-dav-pilkey.html',
'snippet': 'The second graphic novel in Dav Pilkey’s “Super Diaper Baby” spinoff of his wildly popular “Captain Underpants” series.',
'lead_paragraph': 'At what point does a parent of young children stop condemning potty talk and simply throw up his or her hands and let the scatological speech spill forth? The lure of toilet-related topics seems as inevitable as potty training itself, as if once out of diapers, children are unable to resist the conversational detritus they might otherwise have left behind.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-articleLarge.jpg',
'height': 288,
'width': 600,
'legacy': {'xlarge': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 288},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-jumbo.jpg',
'height': 1024,
'width': 689,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-popup.jpg',
'height': 500,
'width': 336,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-articleInline.jpg',
'height': 282,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-sfSpan.jpg',
'height': 192,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/06/29/books/review/29childrens-1/29childrens-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'My First Superhero, Sort Of',
'kicker': 'Children’s Books',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Graphic Novels', 'rank': 2, 'major': 'N'}],
'pub_date': '2011-06-29T18:27:53+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Pamela Paul',
'person': [{'firstname': 'Pamela',
'middlename': None,
'lastname': 'Paul',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/0aca86e3-7b2b-5241-8801-57a867c1f048',
'word_count': 353,
'uri': 'nyt://article/0aca86e3-7b2b-5241-8801-57a867c1f048'},
{'abstract': 'Parents who are raising children with a practice known as elimination communication say it can keep diapers out of landfills and help them bond with their offspring.',
'web_url': 'https://www.nytimes.com/2013/04/19/nyregion/babys-latest-going-diaperless-at-home-or-even-in-the-park.html',
'snippet': 'Parents who are raising children with a practice known as elimination communication say it can keep diapers out of landfills and help them bond with their offspring.',
'lead_paragraph': 'When Jada Shapiro decided to raise her daughter from birth without diapers, for the most part, not everyone was amused. Ms. Shapiro scattered little bowls around the house to catch her daughter’s offerings, and her sister insisted that she use a big, dark marker to mark the bowls so that they could never find their way back to the kitchen.',
'print_section': 'A',
'print_page': '24',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/04/19/nyregion/diapers/diapers-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2013/04/19/nyregion/diapers/diapers-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/04/19/nyregion/diapers/diapers-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/19/nyregion/diapers/diapers-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Baby’s Latest: Going Diaperless',
'kicker': None,
'content_kicker': None,
'print_headline': 'Baby’s Latest: Going Diaperless',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Toilet Training', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Hygiene and Cleanliness',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Sustainable Living',
'rank': 7,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 8, 'major': 'N'}],
'pub_date': '2013-04-19T00:40:55+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Anemona Hartocollis',
'person': [{'firstname': 'Anemona',
'middlename': None,
'lastname': 'Hartocollis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b0b21f49-beae-5f06-839d-dabfa84dc989',
'word_count': 809,
'uri': 'nyt://article/b0b21f49-beae-5f06-839d-dabfa84dc989'},
{'abstract': 'Airports are offering more services for parents traveling with small children, including new automated kiosks to sell diapers.',
'web_url': 'https://www.nytimes.com/2015/07/30/travel/airports-get-more-friendly-for-parents-with-young-children.html',
'snippet': 'Airports are offering more services for parents traveling with small children, including new automated kiosks to sell diapers.',
'lead_paragraph': 'Airports are getting a little more child-friendly, at least for parents traveling with babies and toddlers. The Honest Company, a consumer goods brand, recently started installing automated kiosks stocked with essentials for parents who forgot to bring diapers onto their next flight. The eco-friendly line, founded by the actress Jessica Alba in 2012, has set up nine kiosks at several airports and already plans more.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/30/travel/30airportkiosks-image/30airportkiosks-image-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Airports Get More Friendly for Parents With Young Children',
'kicker': 'In Transit',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Airports', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'}],
'pub_date': '2015-07-30T15:57:32+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Shivani Vora',
'person': [{'firstname': 'Shivani',
'middlename': None,
'lastname': 'Vora',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1fee4a75-64d1-598f-b7a5-a9312db3bc41',
'word_count': 316,
'uri': 'nyt://article/1fee4a75-64d1-598f-b7a5-a9312db3bc41'},
{'abstract': 'The pandemic has exacerbated the inequalities that already existed. These organizations are bridging the gap.',
'web_url': 'https://www.nytimes.com/2020/09/17/parenting/helping-parents-kids-coronavirus.html',
'snippet': 'The pandemic has exacerbated the inequalities that already existed. These organizations are bridging the gap.',
'lead_paragraph': 'More than half a year into the coronavirus pandemic, millions of U.S. families are struggling to pay for basic necessities.',
'print_section': 'B',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-articleLarge.jpg',
'height': 410,
'width': 600,
'legacy': {'xlarge': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 410},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-popup.jpg',
'height': 444,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-blog480.jpg',
'height': 328,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-blog533.jpg',
'height': 364,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-blog427.jpg',
'height': 292,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-tmagSF.jpg',
'height': 247,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-tmagArticle.jpg',
'height': 404,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-slide.jpg',
'height': 410,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-jumbo.jpg',
'height': 699,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-superJumbo.jpg',
'height': 1195,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-blog225.jpg',
'height': 154,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-master1050.jpg',
'height': 717,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-master675.jpg',
'height': 461,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-master495.jpg',
'height': 338,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-master180.jpg',
'height': 123,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-master315.jpg',
'height': 215,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-master768.jpg',
'height': 524,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumSquareAt3X.jpg',
'height': 1194,
'width': 1195,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-threeByTwoLargeAt2X.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-articleInline.jpg',
'height': 130,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-hpSmall.jpg',
'height': 111,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-blogSmallInline.jpg',
'height': 103,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mediumFlexible177.jpg',
'height': 121,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/12/multimedia/17par-how-to-help/17par-how-to-help-mobileMasterAt3x.jpg',
'height': 1195,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Help Parents Who Are Struggling to Provide for Their Kids',
'kicker': None,
'content_kicker': None,
'print_headline': 'Helping Parents to Provide for Their Children',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Philanthropy',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Food Insecurity', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Food Banks and Pantries',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Nonprofit Organizations',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 7,
'major': 'N'}],
'pub_date': '2020-09-17T19:12:43+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Christina Caron',
'person': [{'firstname': 'Christina',
'middlename': None,
'lastname': 'Caron',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/75f90e72-88ce-50d6-9f9b-0981d5925afe',
'word_count': 1063,
'uri': 'nyt://article/75f90e72-88ce-50d6-9f9b-0981d5925afe'},
{'abstract': 'Help fulfill the basic health and well-being of moms, dads and kids.',
'web_url': 'https://www.nytimes.com/2021/12/18/opinion/diapers-supplies-holidays.html',
'snippet': 'Help fulfill the basic health and well-being of moms, dads and kids.',
'lead_paragraph': 'This article is part of Times Opinion’s Holiday Giving Guide 2021. For other ideas on where to donate this year, please see the rest of our guide here.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-horizontalMediumAt2X.jpg',
'height': 2665,
'width': 3995,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-threeByTwoLargeAt2X.jpg',
'height': 2665,
'width': 3995,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/18/opinion/18Grose-photo/18Grose-photo-mobileMasterAt3x.jpg',
'height': 1201,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Give Parents the Gifts of Baby Supplies and Advocacy (and Love)',
'kicker': 'Jessica Grose',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Philanthropy',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Single Mothers', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Maternal Mortality',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'internal-sub-only-nl',
'rank': 6,
'major': 'N'}],
'pub_date': '2021-12-18T13:42:15+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/cd86ab94-81d5-5778-bcec-9d0b4df5a7bd',
'word_count': 587,
'uri': 'nyt://article/cd86ab94-81d5-5778-bcec-9d0b4df5a7bd'},
{'abstract': 'The changing of the royal diaper.',
'web_url': 'https://www.nytimes.com/2013/07/24/opinion/global/chappatte-cartoon-buckingham-palace-welcomes-the-royal-baby.html',
'snippet': 'The changing of the royal diaper.',
'lead_paragraph': 'The changing of the royal diaper.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-articleLarge.jpg',
'height': 452,
'width': 600,
'legacy': {'xlarge': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 452},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-blog480.jpg',
'height': 362,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-blog427.jpg',
'height': 322,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-tmagArticle.jpg',
'height': 446,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-jumbo.jpg',
'height': 490,
'width': 650,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-blog225.jpg',
'height': 170,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-master180.jpg',
'height': 136,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-popup.jpg',
'height': 490,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-blog533.jpg',
'height': 402,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-tmagSF.jpg',
'height': 273,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-slide.jpg',
'height': 452,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-superJumbo.jpg',
'height': 490,
'width': 650,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-master495.jpg',
'height': 373,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-articleInline.jpg',
'height': 143,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-hpSmall.jpg',
'height': 123,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-blogSmallInline.jpg',
'height': 114,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-sfSpan.jpg',
'height': 298,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-largeHorizontal375.jpg',
'height': 283,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/24/opinion/global/24iht-edchappatte24/24iht-edchappatte24-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Buckingham Palace Welcomes the Royal Baby',
'kicker': 'Patrick Chappatte',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Catherine, Duchess of Cambridge',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'William, Duke of Cambridge',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Royal Family', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-07-23T11:20:38+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Global Opinion',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/a92312e6-6d5c-5f7d-ad13-2b7c41675631',
'word_count': 6,
'uri': 'nyt://article/a92312e6-6d5c-5f7d-ad13-2b7c41675631'}],
[{'abstract': 'What do you think about denim diapers and chocolate toddler formula?',
'web_url': 'https://parenting.blogs.nytimes.com/2010/05/25/two-products-i-just-dont-understand/',
'snippet': 'What do you think about denim diapers and chocolate toddler formula?',
'lead_paragraph': 'Diapers with a denim pattern? And chocolate toddler formula? (Marion Nestle apparently has her questions about that second one, too.)',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Two Products I Just Don’t Understand',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-05-25T21:09:51+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/2eefdb90-281a-57e9-89de-be1580e7f312',
'word_count': 20,
'uri': 'nyt://article/2eefdb90-281a-57e9-89de-be1580e7f312'},
{'abstract': 'Many memorable and forgettable looks emerged in 2010. Drapey skirts, transparency and denim diapers are among the most forgettable.',
'web_url': 'https://www.nytimes.com/slideshow/2010/12/30/fashion/20101231-goodbye.html',
'snippet': 'Many memorable and forgettable looks emerged in 2010. Drapey skirts, transparency and denim diapers are among the most forgettable.',
'lead_paragraph': 'Many memorable and forgettable looks emerged in 2010. Drapey skirts, transparency and denim diapers are among the most forgettable.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/12/30/fashion/20101231-goodbye-slide-9DJP/20101231-goodbye-slide-9DJP-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2010/12/30/fashion/20101231-goodbye-slide-9DJP/20101231-goodbye-slide-9DJP-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/12/30/fashion/20101231-goodbye-slide-9DJP/20101231-goodbye-slide-9DJP-jumbo.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/12/30/fashion/20101231-goodbye-slide-9DJP/20101231-goodbye-slide-9DJP-slide.jpg',
'height': 500,
'width': 333,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/12/30/fashion/20101231-goodbye-slide-9DJP/20101231-goodbye-slide-9DJP-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/12/30/fashion/20101231-goodbye-slide-9DJP/20101231-goodbye-slide-9DJP-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': '10 Looks We Never Want to See Again',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Shoes and Boots', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Handbags and Purses',
'rank': 3,
'major': 'N'}],
'pub_date': '2010-12-31T04:16:22+0000',
'document_type': 'multimedia',
'news_desk': 'Fashion & Style',
'section_name': 'Fashion & Style',
'byline': {'original': 'By CATHY HORYN and ERIC WILSON',
'person': [{'firstname': 'Cathy',
'middlename': None,
'lastname': 'HORYN',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Eric',
'middlename': None,
'lastname': 'WILSON',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'Slideshow',
'_id': 'nyt://slideshow/2be3a188-141b-534e-b0ae-4a38881ef6cc',
'word_count': 0,
'slideshow_credits': 'Jason Merritt/Getty Images',
'uri': 'nyt://slideshow/2be3a188-141b-534e-b0ae-4a38881ef6cc'},
{'abstract': 'Modern fathers can choose manly child care gear over the cutesy diaper bags of yesteryear. The bulletproof inserts are optional.',
'web_url': 'https://www.nytimes.com/2020/04/17/parenting/dad-brands.html',
'snippet': 'Modern fathers can choose manly child care gear over the cutesy diaper bags of yesteryear. The bulletproof inserts are optional.',
'lead_paragraph': 'This story was originally published on May 23, 2019 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-superJumbo.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-horizontalMediumAt2X-v2.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-threeByTwoLargeAt2X-v2.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/f3b67c365df64f62a2834367c80b2726-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/21/multimedia/parenting-dad-gear/parenting-dad-gear-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'The Rise of Dad Brands',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Discrimination', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Men and Boys', 'rank': 6, 'major': 'N'}],
'pub_date': '2020-04-17T15:58:57+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Oliver Franklin-Wallis',
'person': [{'firstname': 'Oliver',
'middlename': None,
'lastname': 'Franklin-Wallis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bd77f7e6-ab6d-5e32-afc5-997655b9bdb1',
'word_count': 1112,
'uri': 'nyt://article/bd77f7e6-ab6d-5e32-afc5-997655b9bdb1'},
{'abstract': 'Senate Intelligence Committee Chair Senator Dianne Feinstein says CIA detainees were “stripped naked, diapered, physically struck and put in various painful stress positions” in the aftermath of the September 11, 2001 attacks. Rough Cut (no reporter narration).',
'web_url': 'https://www.nytimes.com/video/multimedia/100000003279638/feinstein-details-harrowing-cia-enhanced-interrogation-technique.html',
'snippet': 'Senate Intelligence Committee Chair Senator Dianne Feinstein says CIA detainees were “stripped naked, diapered, physically struck and put in various painful stress positions” in the aftermath of the September 11, 2001 attacks. Rough Cut (no report...',
'lead_paragraph': 'Senate Intelligence Committee Chair Senator Dianne Feinstein says CIA detainees were “stripped naked, diapered, physically struck and put in various painful stress positions” in the aftermath of the September 11, 2001 attacks. Rough Cut (no reporter narration).',
'source': 'Reuters',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-articleLarge.jpg',
'height': 338,
'width': 600,
'legacy': {'xlarge': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 338},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-blog480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-blog427.jpg',
'height': 240,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-tmagArticle.jpg',
'height': 333,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-jumbo.jpg',
'height': 540,
'width': 960,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-blog225.jpg',
'height': 127,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-master675.jpg',
'height': 380,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-master180.jpg',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-popup.jpg',
'height': 366,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-blog533.jpg',
'height': 300,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-tmagSF.jpg',
'height': 204,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-slide.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-superJumbo.jpg',
'height': 540,
'width': 960,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-master495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-master315.jpg',
'height': 177,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-articleInline.jpg',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-hpSmall.jpg',
'height': 92,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-mediumFlexible177.jpg',
'height': 100,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/09/multimedia/video-ciatorture/video-ciatorture-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Feinstein details harrowing CIA "enhanced interrogation" techniques',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2014-12-09T18:36:38+0000',
'document_type': 'multimedia',
'news_desk': '',
'section_name': 'Multimedia/Photos',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Video',
'_id': 'nyt://video/a750ddb0-f62f-52d4-b2a0-5152dad62069',
'word_count': 0,
'uri': 'nyt://video/a750ddb0-f62f-52d4-b2a0-5152dad62069'},
{'abstract': 'As ideas about gender have evolved, and reveal parties have sometimes proved destructive, parents-to-be may want to consider other ways to celebrate the expansion of their families.',
'web_url': 'https://www.nytimes.com/interactive/2020/09/15/style/gender-reveal-parties-coronavirus-covid.html',
'snippet': 'As ideas about gender have evolved, and reveal parties have sometimes proved destructive, parents-to-be may want to consider other ways to celebrate the expansion of their families.',
'lead_paragraph': 'As ideas about gender have evolved, and reveal parties have sometimes proved destructive, parents-to-be may want to consider other ways to celebrate the expansion of their families.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-articleLarge.png',
'height': 398,
'width': 600,
'legacy': {'xlarge': 'images/2020/09/14/autossell/box_still-copy/box_still-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 398},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-popup.png',
'height': 431,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-blog480.png',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-blog533.png',
'height': 354,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-blog427.png',
'height': 283,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-tmagSF.png',
'height': 240,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-tmagArticle.png',
'height': 393,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-slide.png',
'height': 398,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-jumbo.png',
'height': 679,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-superJumbo.png',
'height': 1359,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-blog225.png',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-master1050.png',
'height': 697,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-master675.png',
'height': 448,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-master495.png',
'height': 328,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-master180.png',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-master315.png',
'height': 209,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-master768.png',
'height': 510,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-thumbStandard-v2.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-thumbStandard-v2.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-blogSmallThumb-v2.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-thumbLarge-v2.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-smallSquare168-v2.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-smallSquare252-v2.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-square320-v2.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-moth-v2.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-filmstrip-v2.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-square640-v2.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-mediumSquare149-v2.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-mediumSquareAt3X-v2.png',
'height': 1427,
'width': 1428,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-sfSpan-v2.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-largeHorizontal375-v2.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-largeHorizontalJumbo-v2.png',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-horizontalMediumAt2X-v2.png',
'height': 1427,
'width': 2142,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-hpLarge-v2.png',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-largeWidescreen573-v2.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-largeWidescreen1050-v2.png',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-thumbWide-v2.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-thumbWide-v2.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoThumb-v2.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoLarge-v2.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-mediumThreeByTwo210-v2.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-mediumThreeByTwo225-v2.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-mediumThreeByTwo440-v2.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-mediumThreeByTwo252-v2.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-mediumThreeByTwo378-v2.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-threeByTwoLargeAt2X-v2.png',
'height': 1427,
'width': 2142,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-threeByTwoMediumAt2X-v2.png',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-threeByTwoSmallAt2X-v2.png',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-articleInline.png',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-hpSmall.png',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-blogSmallInline.png',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-mediumFlexible177.png',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSmall-v2.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoHpMedium-v2.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine600-v2.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine540-v2.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine495-v2.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine390-v2.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine1050-v2.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine480-v2.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine310-v2.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine225-v2.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine96-v2.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine768-v2.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNine150-v2.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoSixteenByNineJumbo1600-v2.png',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-miniMoth-v2.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-windowsTile336H-v2.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-videoFifteenBySeven1305-v2.png',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-facebookJumbo-v2.png',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-watch308-v2.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-watch268-v2.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-copy-verticalTwoByThree735-v2.png',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/autossell/box_still-copy/box_still-mobileMasterAt3x.png',
'height': 1194,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to (Safely) Celebrate Your Future Child',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parties (Social)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Service',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Wildfires', 'rank': 4, 'major': 'N'}],
'pub_date': '2020-09-15T16:27:57+0000',
'document_type': 'multimedia',
'news_desk': 'Style',
'section_name': 'Style',
'byline': {'original': 'By Taylor Lorenz',
'person': [{'firstname': 'Taylor',
'middlename': None,
'lastname': 'Lorenz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/9190a328-5405-5d2f-a7f0-40e4c908b97d',
'word_count': 0,
'uri': 'nyt://interactive/9190a328-5405-5d2f-a7f0-40e4c908b97d'},
{'abstract': 'Test your knowledge of recent events.',
'web_url': 'https://www.nytimes.com/2011/09/04/opinion/sunday/wait-wait-dont-tell-me.html',
'snippet': 'Test your knowledge of recent events.',
'lead_paragraph': 'NPR’s “Wait Wait ... Don’t Tell Me!” is heard weekends on public radio stations across the country. (npr.org/waitwait)',
'print_section': 'SR',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-articleLarge.jpg',
'height': 348,
'width': 600,
'legacy': {'xlarge': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 348},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-blog480.jpg',
'height': 278,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-jumbo.jpg',
'height': 594,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-popup.jpg',
'height': 377,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-articleInline.jpg',
'height': 110,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-sfSpan.jpg',
'height': 229,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/09/04/sunday-review/04WAITWAIT/04WAITWAIT-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Wait Wait ... Don’t Tell Me',
'kicker': 'Quiz',
'content_kicker': None,
'print_headline': 'Wait Wait ... Don’t Tell Me',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'News and News Media',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-09-03T21:34:47+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/819c7dfb-445a-5122-95d1-90d45078bc46',
'word_count': 574,
'uri': 'nyt://article/819c7dfb-445a-5122-95d1-90d45078bc46'},
{'abstract': 'This co-creator and star of “Crazy Ex-Girlfriend” on CW recalls why she held out for so long and how it has changed her life. Really.',
'web_url': 'https://www.nytimes.com/2017/01/19/arts/television/rachel-bloom-the-first-time-i-used-the-potty-for-real-i-was-4.html',
'snippet': 'This co-creator and star of “Crazy Ex-Girlfriend” on CW recalls why she held out for so long and how it has changed her life. Really.',
'lead_paragraph': 'I did not go poo in the toilet until I was 4 years old.',
'print_section': 'AR',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-articleInline-v2.jpg',
'height': 87,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-hpSmall-v2.jpg',
'height': 75,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-blogSmallInline-v2.jpg',
'height': 69,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-mediumFlexible177-v2.jpg',
'height': 81,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-sfSpan-v3.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-largeHorizontalJumbo-v3.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-largeHorizontal375-v3.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-articleLarge-v2.jpg',
'height': 275,
'width': 600,
'legacy': {'xlarge': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 275},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-blog480-v2.jpg',
'height': 220,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-blog427-v2.jpg',
'height': 196,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-tmagArticle-v2.jpg',
'height': 271,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-jumbo-v2.jpg',
'height': 469,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-blog225-v2.jpg',
'height': 103,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-master675-v2.jpg',
'height': 309,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-master180-v2.jpg',
'height': 83,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-master768-v2.jpg',
'height': 352,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-popup-v2.jpg',
'height': 298,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-blog533-v2.jpg',
'height': 244,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-tmagSF-v2.jpg',
'height': 166,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-slide-v2.jpg',
'height': 275,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-superJumbo-v2.jpg',
'height': 939,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-master1050-v2.jpg',
'height': 481,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-master495-v2.jpg',
'height': 227,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-master315-v2.jpg',
'height': 144,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/22/arts/22FIRSTTIME-BLOOM/22FIRSTTIME-BLOOM-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'}],
'headline': {'main': 'Rachel Bloom: The First Time I Used the Potty for Real (I Was 4)',
'kicker': 'The First Time',
'content_kicker': None,
'print_headline': '… I Used the Potty for Real (I Was 4)',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Television',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Actors and Actresses',
'rank': 2,
'major': 'N'},
{'name': 'creative_works',
'value': 'Crazy Ex-Girlfriend (TV Program)',
'rank': 3,
'major': 'N'}],
'pub_date': '2017-01-19T16:28:49+0000',
'document_type': 'article',
'news_desk': 'Arts&Leisure',
'section_name': 'Arts',
'subsection_name': 'Television',
'byline': {'original': 'By Rachel Bloom',
'person': [{'firstname': 'Rachel',
'middlename': None,
'lastname': 'Bloom',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b23c445c-d6ab-5ba5-90f1-ef049c907136',
'word_count': 953,
'uri': 'nyt://article/b23c445c-d6ab-5ba5-90f1-ef049c907136'},
{'abstract': 'Get recommendations from New York Times reporters and editors, highlighting interesting stories from around the web. In this installment, great reads from Andrew Jacobs, John Schwartz and others.',
'web_url': 'https://news.blogs.nytimes.com/2015/07/31/what-were-reading-77/',
'snippet': 'Get recommendations from New York Times reporters and editors, highlighting interesting stories from around the web. In this installment, great reads from Andrew Jacobs, John Schwartz and others.',
'lead_paragraph': 'Get recommendations from New York Times reporters and editors, highlighting great stories from around the web. What We’re Reading emails are sent twice a week. Sign up »',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'What We’re Reading',
'kicker': 'News',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Chinese-Americans', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Atwood, Margaret', 'rank': 5, 'major': 'N'},
{'name': 'persons',
'value': "Dell'Antonia, Karin J",
'rank': 6,
'major': 'N'},
{'name': 'persons',
'value': 'Elizabeth II, Queen of Great Britain',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Jacobs, Andrew', 'rank': 8, 'major': 'N'},
{'name': 'persons', 'value': 'Schwartz, John', 'rank': 9, 'major': 'N'},
{'name': 'organizations',
'value': 'Freedom House',
'rank': 10,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Times',
'rank': 11,
'major': 'N'},
{'name': 'organizations',
'value': 'Vanity Fair',
'rank': 12,
'major': 'N'},
{'name': 'glocations', 'value': 'China', 'rank': 13, 'major': 'N'}],
'pub_date': '2015-07-31T20:18:36+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Blogs',
'byline': {'original': 'By The New York Times',
'person': [],
'organization': 'The New York Times'},
'type_of_material': 'News',
'_id': 'nyt://article/871c8a21-3aea-55d3-b0d7-f50d4168f676',
'word_count': 561,
'uri': 'nyt://article/871c8a21-3aea-55d3-b0d7-f50d4168f676'},
{'abstract': 'What to do when an ex-wife is sending a gift, when you want to wear white to the wedding of two men, and when someone leaves a dirty diaper where it doesn’t belong?',
'web_url': 'https://www.nytimes.com/2012/07/29/fashion/the-gravy-train-ends-here-social-qs.html',
'snippet': 'What to do when an ex-wife is sending a gift, when you want to wear white to the wedding of two men, and when someone leaves a dirty diaper where it doesn’t belong?',
'lead_paragraph': 'My ex-wife phoned to tell me she was sending a food basket to an old friend in sympathy for the death of her husband. She urged me to send a gift too, because it would mean a lot. But my relationship with the widow is attenuated. So I suggested that if a gift from me would provide comfort, my ex-wife was welcome to add my name to the gift card attached to her food basket. She refused. Was this appropriate? Anonymous',
'print_section': 'ST',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-articleLarge-v4.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2011/07/28/fashion/social_inline/social_inline-articleLarge-v4.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-popup-v4.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog480-v4.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog533-v4.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog427-v4.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-tmagSF-v4.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-tmagArticle-v4.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-slide-v4.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-jumbo-v4.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-superJumbo-v4.jpg',
'height': 1863,
'width': 1862,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog225-v4.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master1050-v3.jpg',
'height': 1051,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master675-v4.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master495-v4.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master180-v4.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master315-v4.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master768-v4.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-thumbStandard-v5.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/07/28/fashion/social_inline/social_inline-thumbStandard-v5.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blogSmallThumb-v5.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-thumbLarge-v5.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-smallSquare168-v5.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-smallSquare252-v5.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-square320-v4.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-moth-v4.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-filmstrip-v4.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-square640-v4.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumSquare149-v4.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumSquareAt3X-v3.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-sfSpan-v6.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeHorizontal375-v6.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeHorizontalJumbo-v5.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-horizontalMediumAt2X-v3.jpg',
'height': 1818,
'width': 2726,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-hpLarge-v6.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeWidescreen573-v6.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeWidescreen1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-thumbWide-v9.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2011/07/28/fashion/social_inline/social_inline-thumbWide-v9.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoThumb-v9.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoLarge-v9.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo210-v9.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo225-v9.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo440-v9.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo252-v9.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo378-v9.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-threeByTwoLargeAt2X-v6.jpg',
'height': 1906,
'width': 2859,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-threeByTwoMediumAt2X-v6.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-threeByTwoSmallAt2X-v4.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-articleInline-v4.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-hpSmall-v4.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blogSmallInline-v4.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumFlexible177-v4.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSmall-v6.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoHpMedium-v6.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine600-v6.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine540-v6.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine495-v6.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine390-v6.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine480-v6.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine310-v6.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine225-v6.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine96-v6.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine3000-v3.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine768-v6.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine150-v6.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNineJumbo1600-v4.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-miniMoth-v6.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-windowsTile336H-v6.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoFifteenBySeven2610-v3.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-facebookJumbo-v6.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-watch308-v5.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-watch268-v5.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-verticalTwoByThree735-v3.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mobileMasterAt3x-v4.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'A Final Divorce Decree',
'kicker': 'Social Q’s',
'content_kicker': None,
'print_headline': 'A Final Divorce Decree',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Customs, Etiquette and Manners',
'rank': 1,
'major': 'N'}],
'pub_date': '2012-07-26T22:18:53+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Philip Galanes',
'person': [{'firstname': 'Philip',
'middlename': None,
'lastname': 'Galanes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Question',
'_id': 'nyt://article/434ba515-c8e7-5598-b232-42b0ea979fba',
'word_count': 782,
'uri': 'nyt://article/434ba515-c8e7-5598-b232-42b0ea979fba'},
{'abstract': 'Several parent-founded companies are popping up, seeking to relieve travel-packing stress by espousing D.I.F.M. — “do it for me” — solutions.',
'web_url': 'https://www.nytimes.com/2019/12/17/travel/family-travel.html',
'snippet': 'Several parent-founded companies are popping up, seeking to relieve travel-packing stress by espousing D.I.F.M. — “do it for me” — solutions.',
'lead_paragraph': 'While packing her seven-month-old son’s things for a trip to Europe a year and a half ago, Alejandra Tejada became so overwhelmed by the minutiae — from food pouches to infant thermometers — that she forgot to include diaper cream. She also brought too few diapers and in Barcelona had to make an emergency run — for a decidedly not-leak-proof brand.',
'print_section': 'TR',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/12/22/travel/03trending-kids01/22Trending01-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-horizontalMediumAt2X.jpg',
'height': 5303,
'width': 7950,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/12/22/travel/03trending-kids01/22Trending01-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-threeByTwoLargeAt2X.jpg',
'height': 5303,
'width': 7950,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/22Trending01-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/22/travel/03trending-kids01/merlin_164854107_87918153-1804-4500-9549-9371c840b8ff-mobileMasterAt3x.jpg',
'height': 1201,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Pack for Children? Leave It to the Experts',
'kicker': 'Trending',
'content_kicker': None,
'print_headline': 'Packing Help for Parents',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Cribs (Baby Beds)', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Hotels and Travel Lodgings',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-12-17T10:00:18+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Sarah Firshein',
'person': [{'firstname': 'Sarah',
'middlename': None,
'lastname': 'Firshein',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f2502a4d-407b-5324-bc34-b1ef083a089d',
'word_count': 868,
'uri': 'nyt://article/f2502a4d-407b-5324-bc34-b1ef083a089d'}],
[{'abstract': 'Can you recycle coffee cups or greasy pizza boxes? If you’re tossing things in the recycling bin out of sheer hope, you might be an “aspirational recycler.”',
'web_url': 'https://www.nytimes.com/2018/05/29/climate/recycling-wrong-mistakes.html',
'snippet': 'Can you recycle coffee cups or greasy pizza boxes? If you’re tossing things in the recycling bin out of sheer hope, you might be an “aspirational recycler.”',
'lead_paragraph': 'We have all done it: a greasy pizza box, a disposable coffee cup, the odd plastic bag. Sometimes, we want things to be recyclable, so we put them in the recycling bin.',
'print_section': 'B',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-jumbo.gif',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-superJumbo.gif',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-largeHorizontal375.gif',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-horizontalMediumAt2X.jpg',
'height': 1703,
'width': 2554,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-threeByTwoLargeAt2X.jpg',
'height': 1703,
'width': 2554,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-mediumFlexible177.gif',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/20/climate/20cli-aspirational-promo/20cli-aspirational-promo-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '6 Things You’re Recycling Wrong',
'kicker': None,
'content_kicker': None,
'print_headline': '6 Things You’re Recycling Wrong',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Plastic Bags', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Plastics', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Service',
'rank': 6,
'major': 'N'}],
'pub_date': '2018-05-29T09:00:14+0000',
'document_type': 'article',
'news_desk': 'Climate',
'section_name': 'Climate',
'byline': {'original': 'By Livia Albeck-Ripka',
'person': [{'firstname': 'Livia',
'middlename': None,
'lastname': 'Albeck-Ripka',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e307eb55-2afc-524a-bec6-ee870d01334a',
'word_count': 1061,
'uri': 'nyt://article/e307eb55-2afc-524a-bec6-ee870d01334a'},
{'abstract': 'TPG and Goldman Sachs’s private equity arm are close to a deal to buy Ontex, the European private-label diaper maker, from buyout shop Candover for 1.2 billion euros ($1.5 billion) or more, according to press reports.',
'web_url': 'https://dealbook.nytimes.com/2010/07/06/tpg-and-goldman-said-set-to-buy-candovers-ontex/',
'snippet': 'TPG and Goldman Sachs’s private equity arm are close to a deal to buy Ontex, the European private-label diaper maker, from buyout shop Candover for 1.2 billion euros ($1.5 billion) or more, according to press reports.',
'lead_paragraph': 'TPG and Goldman Sachs‘s private equity arm are close to a deal to buy Ontex, the European private-label diaper maker, from buyout shop Candover for 1.2 billion euros ($1.5 billion) or more, according to press reports.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'TPG and Goldman Said Set to Buy Candover’s Ontex',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Goldman Sachs Group',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Royal Bank of Scotland PLC',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'TPG Capital',
'rank': 3,
'major': 'N'}],
'pub_date': '2010-07-06T08:32:45+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Dealbook',
'person': [{'firstname': 'Dealbook',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/81fd062a-748f-535c-9e9e-84a4dee80ec4',
'word_count': 237,
'uri': 'nyt://article/81fd062a-748f-535c-9e9e-84a4dee80ec4'},
{'abstract': 'A reader does not understand why her children take issue with her nostalgia for Civil War iconography.',
'web_url': 'https://www.nytimes.com/2020/06/18/style/confederate-flags-racism-south.html',
'snippet': 'A reader does not understand why her children take issue with her nostalgia for Civil War iconography.',
'lead_paragraph': 'Thanks to political correctness, I can no longer converse freely with my three adult children. I live in the South; they’ve scattered across the country. I think I’m a good person. No one has ever called me racist — except my children. When I was young, my parents hung a Confederate flag in our home. I remember it fondly because I remember them fondly. Recently, our town removed a Confederate statue from our cemetery. When I lament these changes, my children get furious with me. But it’s my opinion. I also believe black people deserve equal rights. Doesn’t freedom of speech exist anymore?',
'print_section': 'ST',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-articleLarge-v4.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2011/07/28/fashion/social_inline/social_inline-articleLarge-v4.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-popup-v4.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog480-v4.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog533-v4.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog427-v4.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-tmagSF-v4.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-tmagArticle-v4.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-slide-v4.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-jumbo-v4.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-superJumbo-v4.jpg',
'height': 1863,
'width': 1862,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blog225-v4.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master1050-v3.jpg',
'height': 1051,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master675-v4.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master495-v4.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master180-v4.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master315-v4.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-master768-v4.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-thumbStandard-v5.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/07/28/fashion/social_inline/social_inline-thumbStandard-v5.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blogSmallThumb-v5.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-thumbLarge-v5.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-smallSquare168-v5.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-smallSquare252-v5.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-square320-v4.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-moth-v4.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-filmstrip-v4.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-square640-v4.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumSquare149-v4.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumSquareAt3X-v3.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-sfSpan-v6.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeHorizontal375-v6.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeHorizontalJumbo-v5.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-horizontalMediumAt2X-v3.jpg',
'height': 1818,
'width': 2726,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-hpLarge-v6.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeWidescreen573-v6.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-largeWidescreen1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-thumbWide-v9.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2011/07/28/fashion/social_inline/social_inline-thumbWide-v9.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoThumb-v9.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoLarge-v9.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo210-v9.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo225-v9.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo440-v9.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo252-v9.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumThreeByTwo378-v9.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-threeByTwoLargeAt2X-v6.jpg',
'height': 1906,
'width': 2859,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-threeByTwoMediumAt2X-v6.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-threeByTwoSmallAt2X-v4.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-articleInline-v4.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-hpSmall-v4.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-blogSmallInline-v4.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mediumFlexible177-v4.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSmall-v6.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoHpMedium-v6.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine600-v6.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine540-v6.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine495-v6.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine390-v6.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine480-v6.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine310-v6.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine225-v6.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine96-v6.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine3000-v3.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine768-v6.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNine150-v6.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoSixteenByNineJumbo1600-v4.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-miniMoth-v6.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-windowsTile336H-v6.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-videoFifteenBySeven2610-v3.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-facebookJumbo-v6.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-watch308-v5.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-watch268-v5.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-verticalTwoByThree735-v3.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/28/fashion/social_inline/social_inline-mobileMasterAt3x-v4.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Why Can’t I Appreciate the Confederate Flag and Also Condemn Racism?',
'kicker': 'Social Q’s',
'content_kicker': None,
'print_headline': 'Rebel Flag Clash',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Customs, Etiquette and Manners',
'rank': 1,
'major': 'N'}],
'pub_date': '2020-06-18T15:02:24+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Philip Galanes',
'person': [{'firstname': 'Philip',
'middlename': None,
'lastname': 'Galanes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5649cd88-253e-5c42-b101-7ea38e0df632',
'word_count': 863,
'uri': 'nyt://article/5649cd88-253e-5c42-b101-7ea38e0df632'},
{'abstract': 'Parents all over the country are fighting the good fight, ditching the diapers and pushing the potty, all in the name of compliance with that common mandate: no bladder control, no preschool.',
'web_url': 'https://parenting.blogs.nytimes.com/2013/08/19/as-preschool-looms-potty-training-season-ramps-up/',
'snippet': 'Parents all over the country are fighting the good fight, ditching the diapers and pushing the potty, all in the name of compliance with that common mandate: no bladder control, no preschool.',
'lead_paragraph': 'You know you’ve waited too long to potty-train your child when he can form a well-articulated argument against it. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'As Preschool Looms, Potty-Training Season Ramps Up',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Education (Pre-School)',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'}],
'pub_date': '2013-08-19T13:34:29+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Hope Reeves',
'person': [{'firstname': 'Hope',
'middlename': None,
'lastname': 'Reeves',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5dcf39a9-9d10-535f-9f79-239959aaa7a5',
'word_count': 821,
'uri': 'nyt://article/5dcf39a9-9d10-535f-9f79-239959aaa7a5'},
{'abstract': 'Digital tools offer new mothers help with a range of tasks, including writing thank-you notes, getting back to the pre-baby weight, ordering diapers and other necessities, and calming the little one.',
'web_url': 'https://www.nytimes.com/2013/01/24/technology/personaltech/apps-and-other-digital-tools-lend-a-hand-to-new-mothers.html',
'snippet': 'Digital tools offer new mothers help with a range of tasks, including writing thank-you notes, getting back to the pre-baby weight, ordering diapers and other necessities, and calming the little one.',
'lead_paragraph': 'Everyone tells you that having a new baby at home is hard, but I did not understand what they meant until ours arrived. The sleep deprivation. The constant nursing. The endless laundry. Did I mention the sleep deprivation? ',
'print_section': 'B',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/01/24/technology/24toolkit/24toolkit-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-articleLarge.jpg',
'height': 850,
'width': 600,
'legacy': {'xlarge': 'images/2013/01/24/technology/24toolkit/24toolkit-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 850},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-blog480.jpg',
'height': 680,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-blog427.jpg',
'height': 605,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-tmagArticle.jpg',
'height': 839,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-jumbo.jpg',
'height': 1024,
'width': 723,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-popup.jpg',
'height': 500,
'width': 353,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-blog533.jpg',
'height': 755,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-tmagSF.jpg',
'height': 513,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-slide.jpg',
'height': 500,
'width': 353,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-superJumbo.jpg',
'height': 2048,
'width': 1446,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-articleInline.jpg',
'height': 269,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-hpSmall.jpg',
'height': 231,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-blogSmallInline.jpg',
'height': 214,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/01/24/technology/24toolkit/24toolkit-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/24/technology/24toolkit/24toolkit-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Apps and Other Digital Tools Lend a Hand to New Mothers',
'kicker': 'Tool Kit',
'content_kicker': None,
'print_headline': 'Apps and Devices Assist New Mothers',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Computers and the Internet',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Mobile Applications',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 5,
'major': 'N'}],
'pub_date': '2013-01-23T22:10:10+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'subsection_name': 'Personal Tech',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e5411702-d0f3-5158-a59a-c69d3e148efe',
'word_count': 1096,
'uri': 'nyt://article/e5411702-d0f3-5158-a59a-c69d3e148efe'},
{'abstract': 'Ms. Margolis is a nurse anesthetist; Ms. Kennedy works for the City of Pittsburgh.',
'web_url': 'https://www.nytimes.com/2017/07/02/fashion/weddings/jessica-margolis-maura-kennedy.html',
'snippet': 'Ms. Margolis is a nurse anesthetist; Ms. Kennedy works for the City of Pittsburgh.',
'lead_paragraph': 'Jessica Simone Margolis and Maura Brigid Kennedy were married July 1 at the Cira Centre Atrium in Philadelphia. Rabbi Sandra Miller officiated.',
'print_section': 'ST',
'print_page': '13',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-articleInline.jpg',
'height': 112,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-hpSmall.jpg',
'height': 96,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-blogSmallInline.jpg',
'height': 89,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-mediumFlexible177.jpg',
'height': 104,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-largeHorizontalJumbo.jpg',
'height': 632,
'width': 948,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-articleLarge.jpg',
'height': 354,
'width': 600,
'legacy': {'xlarge': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 354},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-blog480.jpg',
'height': 283,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-blog427.jpg',
'height': 252,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-tmagArticle.jpg',
'height': 349,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-jumbo.jpg',
'height': 604,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-blog225.jpg',
'height': 133,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-master675.jpg',
'height': 398,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-master180.jpg',
'height': 106,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-master768.jpg',
'height': 453,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-popup.jpg',
'height': 383,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-blog533.jpg',
'height': 314,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-tmagSF.jpg',
'height': 213,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-slide.jpg',
'height': 354,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-superJumbo.jpg',
'height': 632,
'width': 1072,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-master1050.jpg',
'height': 619,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-master495.jpg',
'height': 292,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-master315.jpg',
'height': 186,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/02/fashion/weddings/02KENNEDYjpg/02KENNEDYjpg-videoSixteenByNineJumbo1600.jpg',
'height': 602,
'width': 1072,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'}],
'headline': {'main': 'Jessica Margolis, Maura Kennedy',
'kicker': None,
'content_kicker': None,
'print_headline': 'Jessica Margolis, Maura Kennedy',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Weddings and Engagements',
'rank': 1,
'major': 'N'}],
'pub_date': '2017-07-02T04:10:17+0000',
'document_type': 'article',
'news_desk': 'Society',
'section_name': 'Fashion & Style',
'subsection_name': 'Weddings',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9cdca111-51e5-5346-a9ad-094d96f4881d',
'word_count': 215,
'uri': 'nyt://article/9cdca111-51e5-5346-a9ad-094d96f4881d'},
{'abstract': 'Smaller and cheaper sensors are infiltrating a range of consumer products, allowing users to put data to work in living healthier lives.',
'web_url': 'https://www.nytimes.com/2014/05/08/technology/personaltech/smartphones-smartwatches-and-now-smart-toothbrushes.html',
'snippet': 'Smaller and cheaper sensors are infiltrating a range of consumer products, allowing users to put data to work in living healthier lives.',
'lead_paragraph': 'IN the last few years, sensors have become small and inexpensive enough to make the monitoring of practically everything possible.',
'print_section': 'B',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/05/08/business/08GADGET-1/GADGET-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-articleLarge.jpg',
'height': 324,
'width': 600,
'legacy': {'xlarge': 'images/2014/05/08/business/08GADGET-1/GADGET-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 324},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-blog480.jpg',
'height': 259,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-blog427.jpg',
'height': 231,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-tmagArticle.jpg',
'height': 320,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-jumbo.jpg',
'height': 553,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-blog225.jpg',
'height': 122,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-master675.jpg',
'height': 365,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-master180.jpg',
'height': 97,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-popup.jpg',
'height': 351,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-blog533.jpg',
'height': 288,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-tmagSF.jpg',
'height': 196,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-slide.jpg',
'height': 324,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-superJumbo.jpg',
'height': 1107,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-master1050.jpg',
'height': 567,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-master495.jpg',
'height': 268,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-master315.jpg',
'height': 170,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-articleInline.jpg',
'height': 103,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-hpSmall.jpg',
'height': 88,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-blogSmallInline.jpg',
'height': 82,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-mediumFlexible177.jpg',
'height': 96,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-hpLarge-v2.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-largeWidescreen573-v2.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/GADGET-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/05/08/business/08GADGET-1/08GADGET-1-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Smartphones, Smartwatches and, Now, Smart Toothbrushes',
'kicker': 'Gadgetwise',
'content_kicker': None,
'print_headline': 'Smartphones, Smartwatches and, Now, Smart Toothbrushes',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sensors',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Smartphones', 'rank': 3, 'major': 'N'},
{'name': 'organizations', 'value': 'Fitbit', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'IndieGoGo.com',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Ford Motor Co',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Wearable Computing',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'Crowdfunding (Internet)',
'rank': 8,
'major': 'N'},
{'name': 'subject',
'value': 'Computer and Video Games',
'rank': 9,
'major': 'N'}],
'pub_date': '2014-05-08T01:01:04+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'subsection_name': 'Personal Tech',
'byline': {'original': 'By Eric A. Taub',
'person': [{'firstname': 'Eric',
'middlename': 'A.',
'lastname': 'Taub',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/71c081a0-77ce-5116-8c52-99f216b3858b',
'word_count': 710,
'uri': 'nyt://article/71c081a0-77ce-5116-8c52-99f216b3858b'},
{'abstract': 'Quotation of the Day for Tuesday, January 30, 2018.',
'web_url': 'https://www.nytimes.com/2018/01/29/todayspaper/quotation-of-the-day-attacks-belie-us-optimism-in-afghan-war.html',
'snippet': 'Quotation of the Day for Tuesday, January 30, 2018.',
'lead_paragraph': '“It’s 2018, and there are young men and women now being sent over there who were literally in diapers when we first sent troops to Afghanistan.”',
'print_section': 'A',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Quotation of the Day: Attacks Belie U.S. Optimism In Afghan War',
'kicker': None,
'content_kicker': None,
'print_headline': 'Quote of the Day',
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2018-01-30T03:02:42+0000',
'document_type': 'article',
'news_desk': 'Summary',
'section_name': 'Today’s Paper',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Quote',
'_id': 'nyt://article/9b70b845-9f87-5cb1-8a9f-cc6497ac391b',
'word_count': 41,
'uri': 'nyt://article/9b70b845-9f87-5cb1-8a9f-cc6497ac391b'},
{'abstract': 'Questions on getting reimbursement for a ticket, on wasteful printing and on discussions at dinner.',
'web_url': 'https://www.nytimes.com/2011/06/26/fashion/about-diaper-changing-etiquette-social-qs.html',
'snippet': 'Questions on getting reimbursement for a ticket, on wasteful printing and on discussions at dinner.',
'lead_paragraph': 'We were sitting at a communal table at the Sonoma Farmers Market when the couple next to us laid their baby on the table and changed his diaper. They also gave a loud play-by-play for delighted family members in the vicinity. A week before, a father across the aisle from me on an international flight changed his baby’s diaper on the food tray. I lost my temper on the plane, but said nothing at the farmers market. What should I have said? — Ricky S., San Francisco',
'print_section': 'ST',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/02/21/fashion/21social-1/21social-1-articleInline.jpg',
'height': 219,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/02/21/fashion/21social-1/21social-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/02/21/fashion/21social-1/21social-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Time for a Change',
'kicker': 'Social Q’s',
'content_kicker': None,
'print_headline': 'Time for a Change',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Customs, Etiquette and Manners',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-06-24T17:33:48+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Philip Galanes',
'person': [{'firstname': 'Philip',
'middlename': None,
'lastname': 'Galanes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a1571e38-2aaf-58f3-a6d4-3d94e831b924',
'word_count': 800,
'uri': 'nyt://article/a1571e38-2aaf-58f3-a6d4-3d94e831b924'},
{'abstract': 'When they’ve gotta go, they’ve gotta go. Here’s how parents can minimize the risk.',
'web_url': 'https://www.nytimes.com/2020/06/17/parenting/public-toilets-virus-kids.html',
'snippet': 'When they’ve gotta go, they’ve gotta go. Here’s how parents can minimize the risk.',
'lead_paragraph': 'Annie Shea Weckesser was in a Target parking lot in Sand City, Calif., waiting for groceries to be loaded into the trunk of her car when her 8-year-old daughter started crying. Weckesser, a mother of three, knew her eldest had to use the bathroom but asked if she could possibly hold it, since they were just 20 minutes from their destination in Pebble Beach. “Her face was red and she was crying hard,” she recalled. “There was no way she was going to be able to hold it.”',
'print_section': 'A',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-articleLarge-v2.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-popup-v2.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-blog480-v2.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-blog533-v2.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-blog427-v2.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-tmagSF-v2.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-tmagArticle-v2.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-slide-v2.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-jumbo-v2.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-superJumbo-v2.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-blog225-v2.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-master1050-v2.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-master675-v2.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-master495-v2.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-master180-v2.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-master315-v2.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-master768-v2.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumSquareAt3X-v2.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-horizontalMediumAt2X-v2.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-threeByTwoLargeAt2X-v2.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-articleInline-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-hpSmall-v2.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-blogSmallInline-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mediumFlexible177-v2.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoSixteenByNineJumbo1600-v2.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/17/multimedia/17parenting-bathrooms/17parenting-bathrooms-mobileMasterAt3x-v2.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Deal With Public Bathrooms During Coronavirus',
'kicker': None,
'content_kicker': None,
'print_headline': 'Here to Help; How to Deal With Kids and Public Bathrooms During Coronavirus',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus Risks and Safety Concerns',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Hygiene and Cleanliness',
'rank': 4,
'major': 'N'}],
'pub_date': '2020-06-17T16:47:29+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Katharine Gammon',
'person': [{'firstname': 'Katharine',
'middlename': None,
'lastname': 'Gammon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/79cbf4c6-efdb-5a00-9c9d-2db60cf0fa67',
'word_count': 1240,
'uri': 'nyt://article/79cbf4c6-efdb-5a00-9c9d-2db60cf0fa67'}],
[{'abstract': 'A picture in Fortune magazine features the directors of Procter & Gamble, including Rajat K. Gupta — weeks before regulators accused him of leaking insider information to Raj Rajaratnam.',
'web_url': 'https://dealbook.nytimes.com/2011/05/13/the-photo-pg-probably-wanted-to-retouch/',
'snippet': 'A picture in Fortune magazine features the directors of Procter & Gamble, including Rajat K. Gupta — weeks before regulators accused him of leaking insider information to Raj Rajaratnam.',
'lead_paragraph': 'The Fortune 500 issue, which hit newsstands this week, has the business magazine’s annual look of seven of “the most photogenic” boards in the United States. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Photo P.&G. Probably Wanted to Retouch',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Gupta, Rajat K',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'McDonald, Robert', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Rajaratnam, Raj', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Fortune (Magazine)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Procter & Gamble Company',
'rank': 5,
'major': 'N'}],
'pub_date': '2011-05-13T20:00:33+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Peter Lattman',
'person': [{'firstname': 'Peter',
'middlename': None,
'lastname': 'Lattman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/6bc2c2b5-2dcf-5fc1-8995-722585416ef7',
'word_count': 337,
'uri': 'nyt://article/6bc2c2b5-2dcf-5fc1-8995-722585416ef7'},
{'abstract': 'Quotation of the Day for Tuesday, June 25, 2019.',
'web_url': 'https://www.nytimes.com/2019/06/24/todayspaper/quotation-of-the-day-democrats-split-over-bill-to-send-relief-to-border.html',
'snippet': 'Quotation of the Day for Tuesday, June 25, 2019.',
'lead_paragraph': '“The administration chooses to direct the vast majority of funding toward enforcement, and then cries poverty when it comes to diapers and food.”',
'print_section': 'A',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Quotation of the Day: Democrats Split Over Bill to Send Relief to Border',
'kicker': None,
'content_kicker': None,
'print_headline': 'Quote of the Day',
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2019-06-25T00:51:05+0000',
'document_type': 'article',
'news_desk': 'Summary',
'section_name': 'Today’s Paper',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Quote',
'_id': 'nyt://article/8af7612e-bbf4-5b98-b69b-a4431f946997',
'word_count': 50,
'uri': 'nyt://article/8af7612e-bbf4-5b98-b69b-a4431f946997'},
{'abstract': 'The maker of Huggies and Kleenex will lay off as much as 13 percent of its staff in an effort to reduce costs.',
'web_url': 'https://www.nytimes.com/2018/01/23/business/kimberly-clark-layoffs.html',
'snippet': 'The maker of Huggies and Kleenex will lay off as much as 13 percent of its staff in an effort to reduce costs.',
'lead_paragraph': 'Kimberly-Clark, the maker of Huggies and Kleenex, is laying off about 13 percent of its work force and shedding factories worldwide, amid declining birthrates that are affecting diaper sales and a retail price war that is weighing on profits.',
'print_section': 'B',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-articleLarge.jpg',
'height': 397,
'width': 600,
'legacy': {'xlarge': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 397},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-popup.jpg',
'height': 430,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-blog480.jpg',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-blog533.jpg',
'height': 353,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-blog427.jpg',
'height': 283,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-tmagSF.jpg',
'height': 240,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-tmagArticle.jpg',
'height': 392,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-slide.jpg',
'height': 397,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-jumbo.jpg',
'height': 678,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-superJumbo.jpg',
'height': 1356,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-blog225.jpg',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-master1050.jpg',
'height': 695,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-master675.jpg',
'height': 447,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-master495.jpg',
'height': 328,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-master180.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-master315.jpg',
'height': 209,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-master768.jpg',
'height': 509,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/merlin_132770267_de22cd90-d395-4507-a53a-2f6d9eb40ab7-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/business/24KIMBERLYCLARK1/24KIMBERLYCLARK1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Kimberly-Clark Cutting 5,000 Jobs Amid Pressure on Prices',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Maker Of Huggies Plans to Cut 5,000 Jobs',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Layoffs and Job Reductions',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 2,
'major': 'N'},
{'name': 'organizations', 'value': 'Kleenex', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Birth Rates', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Dallas (Tex)', 'rank': 6, 'major': 'N'}],
'pub_date': '2018-01-23T18:15:30+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Michael Corkery and Amie Tsang',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Corkery',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Amie',
'middlename': None,
'lastname': 'Tsang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b6afed5e-caad-5439-aee9-648654748c6c',
'word_count': 844,
'uri': 'nyt://article/b6afed5e-caad-5439-aee9-648654748c6c'},
{'abstract': 'A hasty primer. And, more new Parenting stories.',
'web_url': 'https://www.nytimes.com/2020/04/04/parenting/coronavirus-kids-safe-online.html',
'snippet': 'A hasty primer. And, more new Parenting stories.',
'lead_paragraph': 'I barely knew that Facebook’s Messenger Kids app existed before the pandemic. We are pretty open to devices in my household, but if you had asked me about it, I would have said that my 7-year-old could wait a few more years to enter the social media ThunderDome. But that was before she had been separated from all her friends for the foreseeable future.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-horizontalMediumAt2X.jpg',
'height': 2680,
'width': 4020,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-threeByTwoLargeAt2X.jpg',
'height': 2680,
'width': 4020,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/30parenting-shortages-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/31/multimedia/30parenting-shortages-1/merlin_170544246_79933bf8-d3e9-486c-b574-fba43bb42e3d-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Keep Kids Safe Online',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 2,
'major': 'N'}],
'pub_date': '2020-04-04T12:30:03+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/42db55b2-7918-54a4-9b9d-1fdb494d5686',
'word_count': 603,
'uri': 'nyt://article/42db55b2-7918-54a4-9b9d-1fdb494d5686'},
{'abstract': 'Rehearse basic bodily functions (use a diaper). Get counseling in advance.',
'web_url': 'https://www.nytimes.com/2019/04/30/magazine/how-to-prepare-yourself-for-space.html',
'snippet': 'Rehearse basic bodily functions (use a diaper). Get counseling in advance.',
'lead_paragraph': '“You’ve been trying not to pee in your pants your whole life,” says the retired astronaut Scott Kelly, who wore a diaper for liftoff and landing on all four of his space missions. Going into orbit will require you to confront your body in ways you don’t have to on Earth. Get over decades of conditioning by rehearsing basic bodily functions on land: Put on a diaper, lie on the floor with your legs up on the couch, and practice urinating without shame or gravity’s assistance. (Don’t, and you’ll risk damaging your bladder when your body won’t relieve itself in space.)',
'print_section': 'MM',
'print_page': '28',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-articleLarge-v2.jpg',
'height': 372,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 372},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-popup-v2.jpg',
'height': 403,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-blog480-v2.jpg',
'height': 298,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-blog533-v2.jpg',
'height': 331,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-blog427-v2.jpg',
'height': 265,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-tmagSF-v2.jpg',
'height': 225,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-tmagArticle-v2.jpg',
'height': 367,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-slide-v2.jpg',
'height': 372,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-jumbo-v2.jpg',
'height': 635,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-superJumbo-v2.jpg',
'height': 1223,
'width': 1971,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-blog225-v2.jpg',
'height': 140,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-master1050-v2.jpg',
'height': 652,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-master675-v2.jpg',
'height': 419,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-master495-v2.jpg',
'height': 307,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-master180-v2.jpg',
'height': 112,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-master315-v2.jpg',
'height': 195,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-master768-v2.jpg',
'height': 477,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-horizontalMediumAt2X.jpg',
'height': 1933,
'width': 2899,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-threeByTwoLargeAt2X.jpg',
'height': 1942,
'width': 2913,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-articleInline-v2.jpg',
'height': 118,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-hpSmall-v2.jpg',
'height': 101,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-blogSmallInline-v2.jpg',
'height': 94,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-mediumFlexible177-v2.jpg',
'height': 110,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/05/magazine/05Mag-Tip-1/05Mag-Tip-1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How to Prepare Yourself for Space',
'kicker': 'Tip',
'content_kicker': None,
'print_headline': 'How to Prepare Yourself for Space',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Space and Astronomy',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Earth', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Kelly, Scott J', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'National Aeronautics and Space Administration',
'rank': 4,
'major': 'N'}],
'pub_date': '2019-04-30T09:00:03+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Malia Wollan',
'person': [{'firstname': 'Malia',
'middlename': None,
'lastname': 'Wollan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e0045319-f9c4-51bd-9e8a-9f5b7e9ec39d',
'word_count': 408,
'uri': 'nyt://article/e0045319-f9c4-51bd-9e8a-9f5b7e9ec39d'},
{'abstract': 'Jerome Groopman’s children were born when the American family was transitioning from the Scotch-drinking Old Dad to the diaper-changing New Dad.',
'web_url': 'https://www.nytimes.com/2010/10/03/books/review/Upfront-t.html',
'snippet': 'Jerome Groopman’s children were born when the American family was transitioning from the Scotch-drinking Old Dad to the diaper-changing New Dad.',
'lead_paragraph': 'Jerome Groopman’s children were born when the American family was transitioning from Scotch-drinking, baseball-tossing Old Dad to diaper-changing, Baby Bjorn-slinging New Dad.',
'print_section': 'BR',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/03/books/review/03upfront/03upfront-popup.jpg',
'height': 500,
'width': 298,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/03/books/review/03upfront/03upfront-articleInline.jpg',
'height': 319,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/03/books/review/03upfront/03upfront-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/10/03/books/review/03upfront/03upfront-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Up Front: Jerome Groopman',
'kicker': None,
'content_kicker': None,
'print_headline': 'Up Front',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Groopman, Jerome',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'}],
'pub_date': '2010-09-30T23:48:20+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By The Editors',
'person': [],
'organization': 'The Editors'},
'type_of_material': 'News',
'_id': 'nyt://article/e4c21ba5-ec8a-5dd5-8ecd-830bcc67275e',
'word_count': 232,
'uri': 'nyt://article/e4c21ba5-ec8a-5dd5-8ecd-830bcc67275e'},
{'abstract': 'A story that captured the public imagination (it’s the one with the diapers) makes for a messy movie.',
'web_url': 'https://www.nytimes.com/2019/10/03/movies/lucy-in-the-sky-review.html',
'snippet': 'A story that captured the public imagination (it’s the one with the diapers) makes for a messy movie.',
'lead_paragraph': 'It’s hard to know why anyone thought “Lucy in the Sky,” a drama about an astronaut’s fall, would make a good movie. Was it the appeal of outer space, with its beauties, mysteries and infinite possibilities? Or was it the faintly exotic if rather basic romance that blows up so many lives? Was it the diapers?',
'print_section': 'C',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-articleLarge.jpg',
'height': 337,
'width': 600,
'legacy': {'xlarge': 'images/2019/10/03/arts/lucy2/lucy2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 337},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-popup.jpg',
'height': 365,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-blog480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-blog533.jpg',
'height': 300,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-blog427.jpg',
'height': 240,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-tmagSF.jpg',
'height': 203,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-tmagArticle.jpg',
'height': 333,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-slide.jpg',
'height': 337,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-jumbo.jpg',
'height': 576,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-superJumbo.jpg',
'height': 1151,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-blog225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-master1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-master675.jpg',
'height': 379,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-master495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-master180.jpg',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-master315.jpg',
'height': 177,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-master768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/10/03/arts/lucy2/lucy2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-horizontalMediumAt2X.jpg',
'height': 1554,
'width': 2333,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/10/03/arts/lucy2/lucy2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-threeByTwoLargeAt2X.jpg',
'height': 1554,
'width': 2333,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-articleInline.jpg',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-hpSmall.jpg',
'height': 92,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-mediumFlexible177.jpg',
'height': 99,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/03/arts/lucy2/lucy2-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘Lucy in the Sky’ Review: Bad Romance, Astronaut Edition',
'kicker': None,
'content_kicker': None,
'print_headline': 'When the Stars Don’t Align on a Bad Romance',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'Lucy in the Sky (Movie)',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Hawley, Noah', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Portman, Natalie', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Hamm, Jon', 'rank': 5, 'major': 'N'}],
'pub_date': '2019-10-03T18:40:09+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Manohla Dargis',
'person': [{'firstname': 'Manohla',
'middlename': None,
'lastname': 'Dargis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/3728b676-3607-5cce-8167-5a193909363f',
'word_count': 646,
'uri': 'nyt://article/3728b676-3607-5cce-8167-5a193909363f'},
{'abstract': 'In which Tom McCoy contacts us from the past.',
'web_url': 'https://www.nytimes.com/2016/12/10/crosswords/retronyms-crossword-puzzles-daily.html',
'snippet': 'In which Tom McCoy contacts us from the past.',
'lead_paragraph': 'SUNDAY PUZZLE — We’re living in the past today, and that’s not a bad thing. Sometimes it’s good to take a trip down memory lane, to gambol through “what was,” to traipse among the lilies of yesteryear.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/11/crosswords/11wordplay-mail/11wordplay-mail-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'}],
'headline': {'main': 'Retronyms',
'kicker': 'Wordplay',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Crossword Puzzles',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Puzzles', 'rank': 2, 'major': 'N'}],
'pub_date': '2016-12-10T23:00:14+0000',
'document_type': 'article',
'news_desk': 'Games',
'section_name': 'Crosswords & Games',
'byline': {'original': 'By Deb Amlen',
'person': [{'firstname': 'Deb',
'middlename': None,
'lastname': 'Amlen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0d933937-e83a-5b9d-84ef-ca6f358cb92d',
'word_count': 726,
'uri': 'nyt://article/0d933937-e83a-5b9d-84ef-ca6f358cb92d'},
{'abstract': 'As children’s clothing becomes more fashionable, parents press those designers to cater to them, too.',
'web_url': 'https://www.nytimes.com/2012/12/20/fashion/childrens-clothing-inspires-lines-for-adults.html',
'snippet': 'As children’s clothing becomes more fashionable, parents press those designers to cater to them, too.',
'lead_paragraph': 'TRADITIONAL rules of retailing hold that popular adult brands, like the Gap and J. Crew, will inevitably create a children’s line (Gap Kids, Crewcuts). Even designer labels like Fendi and Marc Jacobs have joined in, with coral tulle baby dresses and $150 bootees for those who cannot yet walk. ',
'print_section': 'E',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-articleLarge.jpg',
'height': 410,
'width': 600,
'legacy': {'xlarge': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 410},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20zJPBABY2-blog480.jpg',
'height': 361,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20zJPBABY2-jumbo.jpg',
'height': 770,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-articleLarge.jpg',
'height': 410,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20zJPBABY2-superJumbo.jpg',
'height': 1541,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-blogSmallInline.jpg',
'height': 147,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-sfSpan.jpg',
'height': 280,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/fashion/20BABY_SPAN/20BABY_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Hands Off My Clothes, Mommy',
'kicker': None,
'content_kicker': None,
'print_headline': 'Hands Off My Clothes, Mommy',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'}],
'pub_date': '2012-12-19T22:49:44+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Elissa Gootman',
'person': [{'firstname': 'Elissa',
'middlename': None,
'lastname': 'Gootman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/77b9a899-3395-5901-9207-0027de12a80c',
'word_count': 1273,
'uri': 'nyt://article/77b9a899-3395-5901-9207-0027de12a80c'},
{'abstract': 'A new mother traveling internationally with her infant for the first time learns that there is a daunting list of baby must-haves.',
'web_url': 'https://www.nytimes.com/2016/05/22/travel/mexico-holidays-budget-travel.html',
'snippet': 'A new mother traveling internationally with her infant for the first time learns that there is a daunting list of baby must-haves.',
'lead_paragraph': 'Baby blanket, burp rags, teething toy, bottles, breast pump, swim diaper, bathing suit, sunglasses, sun hat, two kinds of infant sunscreen, diaper cream, diapers, wipes, changing pad, onesies, footies, sun dresses, pants, T-shirt, shoes, socks, sweater, sweatshirt, coat, baby carrier, travel bassinet, sleep sack, car seat-stroller, pop-up shade tent, mosquito bands, mosquito netting, three types of “natural” mosquito repellent and a 10-day supply of baby food. That is our Mexico trip, in list form.',
'print_section': 'TR',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-articleLarge.jpg',
'height': 801,
'width': 600,
'legacy': {'xlarge': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 801},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-blog480.jpg',
'height': 641,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-blog427.jpg',
'height': 570,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-tmagArticle.jpg',
'height': 790,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-jumbo.jpg',
'height': 1024,
'width': 767,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-blog225.jpg',
'height': 300,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-master675.jpg',
'height': 901,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-master180.jpg',
'height': 240,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-master768.jpg',
'height': 1025,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-popup.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-blog533.jpg',
'height': 712,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-tmagSF.jpg',
'height': 483,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-slide.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-superJumbo.jpg',
'height': 2048,
'width': 1534,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-master1050.jpg',
'height': 1402,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-master495.jpg',
'height': 661,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-master315.jpg',
'height': 421,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-articleInline.jpg',
'height': 254,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-hpSmall.jpg',
'height': 218,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-blogSmallInline.jpg',
'height': 202,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-mediumFlexible177.jpg',
'height': 236,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/22/travel/22FRUGAL3/22FRUGAL3-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'On Packing Light and the Car Seat Question',
'kicker': 'Frugal Family',
'content_kicker': None,
'print_headline': 'Travel Light? Not Anymore',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Moon, Freda',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Nayarit (Mexico)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Mexico', 'rank': 5, 'major': 'N'}],
'pub_date': '2016-05-19T11:00:04+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Freda Moon',
'person': [{'firstname': 'Freda',
'middlename': None,
'lastname': 'Moon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7d0517c9-29aa-58b4-aeec-03ff237f7178',
'word_count': 639,
'uri': 'nyt://article/7d0517c9-29aa-58b4-aeec-03ff237f7178'}],
[{'abstract': 'It is not easy to imagine this in today’s Mumbai, but it wasn’t long ago that anything considered “foreign goods” was hard to come by in the city’s markets. An exception that continues today is Crawford Market, in South Mumbai, where residents and visitors alike can find Western items like Camay soap, Kraft cheese, Fa deodorant or a pack of Pampers diapers.',
'web_url': 'https://intransit.blogs.nytimes.com/2011/11/24/mumbai-market-specializes-in-western-goods/',
'snippet': 'It is not easy to imagine this in today’s Mumbai, but it wasn’t long ago that anything considered “foreign goods” was hard to come by in the city’s markets. An exception that continues today is Crawford Market, in South Mumbai, where residents and...',
'lead_paragraph': 'It is not easy to imagine this in today’s Mumbai, but it wasn’t long ago that anything considered “foreign goods” was hard to come by in the city’s markets. An exception that continues today is Crawford Market, in South Mumbai, where residents and visitors alike can find Western items like Camay soap, Kraft cheese, Fa deodorant or a pack of Pampers diapers. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Mumbai Market Specializes in Western Goods',
'kicker': 'In Transit',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Mumbai (India)',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-11-24T11:00:00+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Travel',
'byline': {'original': 'By Charukesi Ramadurai',
'person': [{'firstname': 'Charukesi',
'middlename': None,
'lastname': 'Ramadurai',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e409395c-4b96-5617-bb35-cb8ee420fc83',
'word_count': 233,
'uri': 'nyt://article/e409395c-4b96-5617-bb35-cb8ee420fc83'},
{'abstract': 'Litter Genie, a cat product that was introduced in 2012, is the subject of a series of promotional videos on YouTube.',
'web_url': 'https://www.nytimes.com/2013/02/12/business/media/using-silly-cat-videos-to-sell-litter-box-products.html',
'snippet': 'Litter Genie, a cat product that was introduced in 2012, is the subject of a series of promotional videos on YouTube.',
'lead_paragraph': 'WATCHING cat videos is so popular that it has become shorthand for being unproductive, whether or not someone being distracted by the Internet is actually watching a cat riding a robotic vacuum or playing the piano.',
'print_section': 'B',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/02/12/business/Adco/Adco-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-articleLarge.jpg',
'height': 339,
'width': 600,
'legacy': {'xlarge': 'images/2013/02/12/business/Adco/Adco-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 339},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-blog480.jpg',
'height': 271,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-blog427.jpg',
'height': 241,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-tmagArticle.jpg',
'height': 334,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-jumbo.jpg',
'height': 578,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-popup.jpg',
'height': 367,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-blog533.jpg',
'height': 301,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-tmagSF.jpg',
'height': 204,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-slide.jpg',
'height': 339,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-superJumbo.jpg',
'height': 1156,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-articleInline.jpg',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-hpSmall.jpg',
'height': 92,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/02/12/business/Adco/Adco-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/12/business/Adco/Adco-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Using Silly Cat Videos to Sell Litter-Box Products',
'kicker': 'Advertising',
'content_kicker': None,
'print_headline': 'Using Silly Cat Videos to Sell Litter-Box Products',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Cats', 'rank': 1, 'major': 'N'},
{'name': 'subject',
'value': 'Online Advertising',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Video Recordings and Downloads',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Web-Original Programming',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Energizer Holdings Inc',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 8,
'major': 'N'}],
'pub_date': '2013-02-12T00:34:14+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Andrew Adam Newman',
'person': [{'firstname': 'Andrew',
'middlename': 'Adam',
'lastname': 'Newman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cc21af9e-11b0-5f44-891e-ac117ad08de6',
'word_count': 887,
'uri': 'nyt://article/cc21af9e-11b0-5f44-891e-ac117ad08de6'},
{'abstract': 'My version of parenting isn’t always Instagram-worthy.',
'web_url': 'https://www.nytimes.com/2020/04/15/parenting/mom-pressure-type-b.html',
'snippet': 'My version of parenting isn’t always Instagram-worthy.',
'lead_paragraph': '[This story was originally published on Sept. 26, 2019 on NYT Parenting.]',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-articleLarge.jpg',
'height': 450,
'width': 600,
'legacy': {'xlarge': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 450},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-popup.jpg',
'height': 488,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-blog533.jpg',
'height': 400,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-blog427.jpg',
'height': 320,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-tmagSF.jpg',
'height': 272,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-tmagArticle.jpg',
'height': 444,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-slide.jpg',
'height': 450,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-jumbo.jpg',
'height': 768,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-superJumbo.jpg',
'height': 1536,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-blog225.jpg',
'height': 169,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-master1050.jpg',
'height': 788,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-master675.jpg',
'height': 506,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-master495.jpg',
'height': 371,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-master180.jpg',
'height': 135,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-master315.jpg',
'height': 236,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-master768.jpg',
'height': 576,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-horizontalMediumAt2X.jpg',
'height': 2688,
'width': 4032,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-threeByTwoLargeAt2X-v2.jpg',
'height': 2354,
'width': 3531,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-articleInline.jpg',
'height': 143,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-hpSmall.jpg',
'height': 122,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-blogSmallInline.jpg',
'height': 113,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/multimedia/parenting-type-b-new/parenting-type-b-new-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'I’ll Never Be a ‘Type A’ Mom, and That’s O.K.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Orderliness and Clutter',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Social Media', 'rank': 5, 'major': 'N'}],
'pub_date': '2020-04-15T20:39:51+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Brianna Bell',
'person': [{'firstname': 'Brianna',
'middlename': None,
'lastname': 'Bell',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2ff38300-fb51-5c6a-be51-8a6562413820',
'word_count': 1283,
'uri': 'nyt://article/2ff38300-fb51-5c6a-be51-8a6562413820'},
{'abstract': 'Fears of pointless consumerism were no match for the joy and relief our gear provided.',
'web_url': 'https://www.nytimes.com/2022/08/14/technology/baby-gear-tech.html',
'snippet': 'Fears of pointless consumerism were no match for the joy and relief our gear provided.',
'lead_paragraph': 'When my wife was three months pregnant — before we had told most of our friends we were expecting, but after it was pretty clear the pregnancy would stick — she started making a list of baby gear.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-articleLarge.jpg',
'height': 646,
'width': 600,
'legacy': {'xlarge': 'images/2022/08/10/business/10roose/10roose-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 646},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-popup.jpg',
'height': 500,
'width': 465,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-blog480.jpg',
'height': 517,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-blog533.jpg',
'height': 574,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-blog427.jpg',
'height': 460,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-tmagSF.jpg',
'height': 390,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-tmagArticle.jpg',
'height': 637,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-slide.jpg',
'height': 500,
'width': 465,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-jumbo.jpg',
'height': 1024,
'width': 952,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-superJumbo.jpg',
'height': 2048,
'width': 1903,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-blog225.jpg',
'height': 242,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-master1050.jpg',
'height': 1131,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-master675.jpg',
'height': 727,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-master495.jpg',
'height': 533,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-master180.jpg',
'height': 194,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-master315.jpg',
'height': 339,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-master768.jpg',
'height': 827,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/08/10/business/10roose/10roose-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumSquareAt3X.jpg',
'height': 1798,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-horizontalMediumAt2X.jpg',
'height': 2252,
'width': 3380,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/08/10/business/10roose/10roose-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-threeByTwoLargeAt2X-v2.jpg',
'height': 2251,
'width': 3381,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-threeByTwoMediumAt2X-v2.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-threeByTwoSmallAt2X-v2.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-articleInline.jpg',
'height': 205,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-hpSmall.jpg',
'height': 176,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-blogSmallInline.jpg',
'height': 163,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mediumFlexible177.jpg',
'height': 191,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/10/business/10roose/10roose-mobileMasterAt3x.jpg',
'height': 1938,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'I Was Skeptical of Baby Gear. Then I Became a Dad.',
'kicker': 'the Shift',
'content_kicker': None,
'print_headline': 'I Was Skeptical of Baby Gear. Then I Became a Dad.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Baby Carriages, Strollers and Carriers',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Child Car Seats', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Toys', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Luxury Goods and Services',
'rank': 8,
'major': 'N'},
{'name': 'subject',
'value': 'Cribs (Baby Beds)',
'rank': 9,
'major': 'N'}],
'pub_date': '2022-08-14T20:00:09+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Kevin Roose',
'person': [{'firstname': 'Kevin',
'middlename': None,
'lastname': 'Roose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1e71ea8a-7b36-5386-9497-02dcba9c27ee',
'word_count': 1720,
'uri': 'nyt://article/1e71ea8a-7b36-5386-9497-02dcba9c27ee'},
{'abstract': 'Seven tips for easier family travel.',
'web_url': 'https://parenting.blogs.nytimes.com/2012/06/15/practical-travelers-tips-for-summer-travel-with-kids/',
'snippet': 'Seven tips for easier family travel.',
'lead_paragraph': 'If you’re planning a trip involving flights with children this summer, you’ll want to check out Practical Traveler Michelle Higgins’s advice for traveling families. “At a minimum, especially if you’re traveling with small children, take a change of clothes onboard for the child and yourself. That way, when she spills cranberry juice all over you, or her diaper leaks, you have options.” My oldest son once soaked himself at the infinity fountain in the Detroit airport …',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Practical Traveler’s Tips for Summer Travel With Kids',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-06-15T15:20:53+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': "By Kj Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/80a9f393-ed0c-550f-8253-34f4e8740142',
'word_count': 77,
'uri': 'nyt://article/80a9f393-ed0c-550f-8253-34f4e8740142'},
{'abstract': 'A video of two diaper-clad twins chatting up a storm in the family kitchen has gone viral, prompting millions of viewers to wonder what the heck the toddlers might be talking about.',
'web_url': 'https://well.blogs.nytimes.com/2011/03/31/toddler-twins-secret-language-or-babble/',
'snippet': 'A video of two diaper-clad twins chatting up a storm in the family kitchen has gone viral, prompting millions of viewers to wonder what the heck the toddlers might be talking about.',
'lead_paragraph': 'A video of two diaper-clad twins chatting up a storm in the family kitchen has gone viral, prompting millions of viewers to wonder what the heck the toddlers might be talking about.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Toddler Twins: Secret Language or Babble?',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Youth',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Language and Languages',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Twins', 'rank': 3, 'major': 'N'}],
'pub_date': '2011-03-31T18:22:03+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Health',
'byline': {'original': 'By Tara Parker-Pope',
'person': [{'firstname': 'Tara',
'middlename': None,
'lastname': 'Parker-Pope',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/3ef40b0e-d77e-5583-a176-b3e0b296da30',
'word_count': 510,
'uri': 'nyt://article/3ef40b0e-d77e-5583-a176-b3e0b296da30'},
{'abstract': 'Amid a deluge of health apps and devices washing over consumers, there are some quirky, intriguing products that may have escaped your notice. Here are the best of them.',
'web_url': 'https://well.blogs.nytimes.com/2014/03/10/zombies-workout-music-and-baby-trackers-health-tech-for-everyone/',
'snippet': 'Amid a deluge of health apps and devices washing over consumers, there are some quirky, intriguing products that may have escaped your notice. Here are the best of them.',
'lead_paragraph': 'Amid a deluge of health apps and devices washing over consumers, there are some quirky, intriguing products that may have escaped your notice. Here are the best of them.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/03/11/science/11TECH1/11TECH1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-jumbo.jpg',
'height': 460,
'width': 260,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-blog225.jpg',
'height': 398,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-master180.jpg',
'height': 318,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-popup.jpg',
'height': 460,
'width': 260,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-slide.jpg',
'height': 460,
'width': 260,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-superJumbo.jpg',
'height': 460,
'width': 260,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/03/11/science/11TECH1/11TECH1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/11/science/11TECH1/11TECH1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Zombies, Workout Music and Baby Trackers: Health Tech for Everyone',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Medicine and Health',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Mobile Applications',
'rank': 2,
'major': 'N'}],
'pub_date': '2014-03-10T23:16:52+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Peter Andrey Smith',
'person': [{'firstname': 'Peter',
'middlename': 'Andrey',
'lastname': 'Smith',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e0dc79a7-f56e-53db-94d8-21a04c9eb739',
'word_count': 471,
'uri': 'nyt://article/e0dc79a7-f56e-53db-94d8-21a04c9eb739'},
{'abstract': 'Kelly Sawyer Patricof and Norah Weinstein are the co-presidents of Baby2Baby, a charity for children that supplies diapers to low-income families.',
'web_url': 'https://www.nytimes.com/2015/03/15/style/channeling-a-hollywood-baby-boom-for-charity.html',
'snippet': 'Kelly Sawyer Patricof and Norah Weinstein are the co-presidents of Baby2Baby, a charity for children that supplies diapers to low-income families.',
'lead_paragraph': 'LOS ANGELES — Kelly Sawyer Patricof does not seem like the kind of woman who would devote her life to diapering the children of the poor.',
'print_section': 'ST',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-watch308.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-watch268.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/03/15/fashion/15SCENE/15SCENE-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/03/15/fashion/15SCENE/15SCENE-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/03/15/fashion/15SCENE/15SCENE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/15/fashion/15SCENE/15SCENE-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Channeling a Hollywood Baby Boom for Charity',
'kicker': 'Scene Stealers',
'content_kicker': None,
'print_headline': 'Channeling a Hollywood Baby Boom for Charity',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Patricof, Kelly Sawyer',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'Weinstein, Norah (1976- )',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': 'Baby2Baby', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Celebrities', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 7, 'major': 'N'}],
'pub_date': '2015-03-13T22:31:51+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Brooks Barnes',
'person': [{'firstname': 'Brooks',
'middlename': None,
'lastname': 'Barnes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/84ad34cd-580b-567c-b52f-610bd4fa0af0',
'word_count': 1663,
'uri': 'nyt://article/84ad34cd-580b-567c-b52f-610bd4fa0af0'},
{'abstract': 'Places like Portland, Ore., and Seattle are cutting back on garbage collections, but the quest for “zero waste” comes at a pungent cost.',
'web_url': 'https://www.nytimes.com/2012/06/28/us/a-recycling-ideal-so-close-cities-can-smell-it.html',
'snippet': 'Places like Portland, Ore., and Seattle are cutting back on garbage collections, but the quest for “zero waste” comes at a pungent cost.',
'lead_paragraph': 'PORTLAND, Ore. — Stephanie and Matt Murphy plan on using cloth diapers instead of disposable ones once their first baby arrives next month. They want to be good environmental citizens and reduce what they send to landfills, but there is another incentive, too. ',
'print_section': 'A',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/28/us/WASTE3/WASTE3-jumbo.jpg',
'height': 1024,
'width': 794,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/28/us/WASTE3/WASTE3-popup.jpg',
'height': 500,
'width': 387,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/28/us/WASTE3/WASTE3-superJumbo.jpg',
'height': 1711,
'width': 1326,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/28/us/WASTE3/WASTE3-articleInline.jpg',
'height': 245,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/28/us/WASTE3/WASTE3-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/28/us/WASTE3/WASTE3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/06/28/us/WASTE3/WASTE3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/28/us/WASTE3/WASTE3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Cities Get So Close to Recycling Ideal, They Can Smell It',
'kicker': None,
'content_kicker': None,
'print_headline': 'Cities Get So Close To Recycling Ideal, They Can Smell It',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Seattle (Wash)', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'San Francisco (Calif)',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Compost', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'Portland (Ore)',
'rank': 6,
'major': 'N'}],
'pub_date': '2012-06-28T03:17:02+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By William Yardley',
'person': [{'firstname': 'William',
'middlename': None,
'lastname': 'Yardley',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/dd3e068a-869a-5898-9d97-5b6b67a03ca2',
'word_count': 1169,
'uri': 'nyt://article/dd3e068a-869a-5898-9d97-5b6b67a03ca2'},
{'abstract': 'Food-insecure families already know how this feels.',
'web_url': 'https://www.nytimes.com/2022/05/13/opinion/baby-formula.html',
'snippet': 'Food-insecure families already know how this feels.',
'lead_paragraph': 'I’m often frustrated by the way many American parents are treated, but this week my exasperation — my outrage — has been intense. That’s because there’s a formula shortage in the United States, and the extremity of the shortage — the national out-of-stock rate reached 43 percent for the week ending Sunday, according to a report in The Times — is because of a February recall of select batches of Similac, Alimentum and EleCare formulas, but also because of supply chain issues that predate the recall.',
'print_section': 'A',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-horizontalMediumAt2X.jpg',
'height': 3415,
'width': 5123,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-threeByTwoLargeAt2X.jpg',
'height': 3415,
'width': 5123,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/13/opinion/13grose-image-v2/13grose-image-v2-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'The Formula Shortage Isn’t an Excuse to Be Cruel',
'kicker': 'Jessica Grose',
'content_kicker': None,
'print_headline': 'Babies Need to Eat. Don’t Play Politics With the Formula Shortage.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Infant Formulas',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Shortages', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Supply Chain', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Food Insecurity', 'rank': 4, 'major': 'N'},
{'name': 'organizations', 'value': 'Similac', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Recalls and Bans of Products',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 7, 'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'internal-sub-only-nl',
'rank': 9,
'major': 'N'}],
'pub_date': '2022-05-13T09:00:14+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/0993586c-2ad6-52bb-93f1-e32bc6ab6232',
'word_count': 1406,
'uri': 'nyt://article/0993586c-2ad6-52bb-93f1-e32bc6ab6232'}],
[{'abstract': 'What lessons have you learned?',
'web_url': 'https://boss.blogs.nytimes.com/2010/10/20/how-did-you-get-your-product-on-the-right-shelves/',
'snippet': 'What lessons have you learned?',
'lead_paragraph': 'We just published a small-business guide to getting retailers to carry your product. Written by Eilene Zimmerman, the guide offers the experiences of several business owners, including Jill Cartwright, founder of Go GaGa, who actually took a job with a retailer in an effort to place her line of ergonomic diaper bags.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'How Did You Get Your Product on the Right Shelves?',
'kicker': 'You're the Boss',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-10-20T20:04:54+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Entrepreneurship',
'byline': {'original': "By You're the Boss Editors",
'person': [{'firstname': None,
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/107f36dc-54cd-5442-8cd1-95dcb692e037',
'word_count': 66,
'uri': 'nyt://article/107f36dc-54cd-5442-8cd1-95dcb692e037'},
{'abstract': 'When a word on a shipping form has two meanings.',
'web_url': 'https://www.nytimes.com/2017/02/14/nyregion/metropolitan-diary-confusion-at-the-postal-counter.html',
'snippet': 'When a word on a shipping form has two meanings.',
'lead_paragraph': 'Dear Diary:',
'print_section': 'A',
'print_page': '17',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Confusion at the Postal Counter',
'kicker': 'Metropolitan Diary',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Grand Central Terminal (Manhattan, NY)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Postal Service and Post Offices',
'rank': 2,
'major': 'N'}],
'pub_date': '2017-02-15T01:00:02+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Carl Beckwith',
'person': [{'firstname': 'Carl',
'middlename': None,
'lastname': 'Beckwith',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Brief',
'_id': 'nyt://article/c7e27c77-785d-55a0-9d43-2f1e1a3e92bb',
'word_count': 78,
'uri': 'nyt://article/c7e27c77-785d-55a0-9d43-2f1e1a3e92bb'},
{'abstract': 'The winners in the “Best Parenting Advice in Six Words” contest include the funny, the practical and the sweet.',
'web_url': 'https://parenting.blogs.nytimes.com/2015/11/06/winners-the-best-parenting-advice-in-six-words/',
'snippet': 'The winners in the “Best Parenting Advice in Six Words” contest include the funny, the practical and the sweet.',
'lead_paragraph': 'We called for The Best Parenting Advice in Six Words. You responded, with more than 250 comments, and as many tweets and Facebook posts. From the bounty of pithy brilliance, I invited Larry Smith, the founder of Smith Magazine and editor of “The Best Advice in Six Words,” along with the other books in the “Six Words” series, to choose his favorite. He did more, as the very best contest judges will, creating categories to fit and bestowing accolades wherever possible. His choices, and his ultimate favorite:',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-watch308.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-watch268.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoLarge.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-mediumThreeByTwo440.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-mediumThreeByTwo252.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-mediumThreeByTwo378.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-facebookJumbo.png',
'height': 523,
'width': 1000,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-articleLarge.png',
'height': 336,
'width': 600,
'legacy': {'xlarge': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 336},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-blog480.png',
'height': 269,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-blog427.png',
'height': 239,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-tmagArticle.png',
'height': 332,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-jumbo.png',
'height': 560,
'width': 1000,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-blog225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-master675.png',
'height': 378,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-master180.png',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-master768.png',
'height': 430,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-popup.png',
'height': 364,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-blog533.png',
'height': 298,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-tmagSF.png',
'height': 203,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-slide.png',
'height': 336,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-superJumbo.png',
'height': 560,
'width': 1000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-master495.png',
'height': 277,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-master315.png',
'height': 176,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-articleInline.png',
'height': 106,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-hpSmall.png',
'height': 91,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-blogSmallInline.png',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-mediumFlexible177.png',
'height': 99,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-sfSpan.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-hpLarge.png',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-largeWidescreen573.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine768.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-videoSixteenByNine150.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-smallSquare252.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/06/us/parentinginsixcontest-motherlode/parentinginsixcontest-motherlode-smallSquare168.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Winners: The Best Parenting Advice in Six Words',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'}],
'pub_date': '2015-11-06T19:13:30+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'U.S.',
'byline': {'original': "By Kj Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/458c4ee1-fecf-5b6c-be8d-313c769369f6',
'word_count': 284,
'uri': 'nyt://article/458c4ee1-fecf-5b6c-be8d-313c769369f6'},
{'abstract': 'Kevin Hart plays a widower raising a daughter in this Father’s Day Netflix weepie, but the lack of conflict borders on bland.',
'web_url': 'https://www.nytimes.com/2021/06/17/movies/fatherhood-review.html',
'snippet': 'Kevin Hart plays a widower raising a daughter in this Father’s Day Netflix weepie, but the lack of conflict borders on bland.',
'lead_paragraph': 'It’s a durable bit of Hollywood conventional wisdom: Behind every good man is a dead woman. “Fatherhood,” a new Netflix movie starring Kevin Hart, is its latest affirmation. A movie widower, especially one with children, draws on a bottomless reserve of audience sympathy, granted the benefit of the doubt far beyond what any woman, however generous or virtuous or grief-stricken, can expect.',
'print_section': 'C',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-horizontalMediumAt2X.jpg',
'height': 4800,
'width': 7200,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-threeByTwoLargeAt2X.jpg',
'height': 4800,
'width': 7200,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/17/arts/17fatherhood1/17fatherhood1-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘Fatherhood’ Review: He Lost His Wife. Go Easy on Him.',
'kicker': None,
'content_kicker': None,
'print_headline': 'Viewers, Start Your Tears',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'Fatherhood (Movie)',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Weitz, Paul', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Hart, Kevin', 'rank': 4, 'major': 'N'}],
'pub_date': '2021-06-17T17:16:02+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By A.O. Scott',
'person': [{'firstname': 'A.',
'middlename': 'O.',
'lastname': 'Scott',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/5ecbf3e7-a46c-5979-948c-4579516a5a4e',
'word_count': 559,
'uri': 'nyt://article/5ecbf3e7-a46c-5979-948c-4579516a5a4e'},
{'abstract': 'On 16 out of 25 child-care tasks — like changing diapers, taking a child to the doctor or getting up in the middle of a night to attend to a child — women reported statistically significant higher levels of enjoyment than men.',
'web_url': 'https://well.blogs.nytimes.com/2012/03/22/do-women-like-child-care-more-than-men/',
'snippet': 'On 16 out of 25 child-care tasks — like changing diapers, taking a child to the doctor or getting up in the middle of a night to attend to a child — women reported statistically significant higher levels of enjoyment than men.',
'lead_paragraph': 'This column appears in the March 25 issue of The New York Times Magazine.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2012/03/25/health/25well_diaper/25well_diaper-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-blog480.jpg',
'height': 354,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-tmagArticle.jpg',
'height': 474,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-jumbo.jpg',
'height': 819,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-popup.jpg',
'height': 520,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-articleInline.jpg',
'height': 152,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-sfSpan.jpg',
'height': 316,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/03/25/health/25well_diaper/25well_diaper-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/25/health/25well_diaper/25well_diaper-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Do Women Like Child Care More Than Men?',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-03-22T04:01:52+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Health',
'byline': {'original': 'By Tara Parker-Pope',
'person': [{'firstname': 'Tara',
'middlename': None,
'lastname': 'Parker-Pope',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9ea0e89c-622c-542b-a6e7-6c52772a47a4',
'word_count': 554,
'uri': 'nyt://article/9ea0e89c-622c-542b-a6e7-6c52772a47a4'},
{'abstract': 'We invited you to talk about your families and climate. Today, we’re sharing a few of the responses.',
'web_url': 'https://www.nytimes.com/2022/10/21/climate/reader-stories-generational-differences.html',
'snippet': 'We invited you to talk about your families and climate. Today, we’re sharing a few of the responses.',
'lead_paragraph': 'A few weeks ago, we asked you, our Climate Forward readers, to tell us about the generational differences on climate change within your families. We got many great responses, and today I’m going to share some of them.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-articleLarge.jpg',
'height': 401,
'width': 600,
'legacy': {'xlarge': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 401},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-popup.jpg',
'height': 435,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-blog480.jpg',
'height': 321,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-blog427.jpg',
'height': 286,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-tmagArticle.jpg',
'height': 396,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-slide.jpg',
'height': 401,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-jumbo.jpg',
'height': 685,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-superJumbo.jpg',
'height': 1370,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-master1050.jpg',
'height': 702,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-master675.jpg',
'height': 451,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-master495.jpg',
'height': 331,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-master315.jpg',
'height': 211,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-master768.jpg',
'height': 514,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-horizontalMediumAt2X.jpg',
'height': 1821,
'width': 2732,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-threeByTwoLargeAt2X.jpg',
'height': 1821,
'width': 2732,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/22/climate/00cli-newsletter-generational-difference/00cli-newsletter-generational-difference-mobileMasterAt3x.jpg',
'height': 1204,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Your stories: Generational differences',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Retirement',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Youth', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Age, Chronological',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Global Warming', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Greenhouse Gas Emissions',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'internal-storyline-no',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'internal-sub-only-nl',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'src-reader-callout',
'rank': 8,
'major': 'N'}],
'pub_date': '2022-10-21T14:43:35+0000',
'document_type': 'article',
'news_desk': 'Climate',
'section_name': 'Climate',
'byline': {'original': 'By Manuela Andreoni',
'person': [{'firstname': 'Manuela',
'middlename': None,
'lastname': 'Andreoni',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2eff4a2f-8b0f-5014-a21a-5458c3938e98',
'word_count': 1331,
'uri': 'nyt://article/2eff4a2f-8b0f-5014-a21a-5458c3938e98'},
{'abstract': 'Even the most ardent adherents to green living say they stray from the rules.',
'web_url': 'https://www.nytimes.com/2010/09/30/garden/30guilt.html',
'snippet': 'Even the most ardent adherents to green living say they stray from the rules.',
'lead_paragraph': 'JOSH DORFMAN, author of “The Lazy Environmentalist: Your Guide to Easy, Stylish, Green Living,” could not be accused of failing to live green.',
'print_section': 'D',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/30/garden/30guilt-span/30guilt-span-articleLarge.jpg',
'height': 391,
'width': 600,
'legacy': {'xlarge': 'images/2010/09/30/garden/30guilt-span/30guilt-span-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 391},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/30/garden/30guilt-span/30guilt-span-jumbo.jpg',
'height': 1024,
'width': 855,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/30/garden/30guilt-span/30guilt-span-popup.jpg',
'height': 500,
'width': 418,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/30/garden/30guilt-span/30guilt-span-articleInline.jpg',
'height': 210,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/30/garden/30guilt-span/30guilt-span-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/30/garden/30guilt-span/30guilt-span-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/09/30/garden/30guilt-span/30guilt-span-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Green, but Still Feeling Guilty',
'kicker': None,
'content_kicker': None,
'print_headline': 'Green Guilt',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sustainable Living',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Environment', 'rank': 3, 'major': 'N'}],
'pub_date': '2010-09-29T23:13:04+0000',
'document_type': 'article',
'news_desk': 'Home',
'section_name': 'Home & Garden',
'byline': {'original': 'By Joyce Wadler',
'person': [{'firstname': 'Joyce',
'middlename': None,
'lastname': 'Wadler',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a52aedd2-55c4-595b-8110-900ab05643fc',
'word_count': 3097,
'uri': 'nyt://article/a52aedd2-55c4-595b-8110-900ab05643fc'},
{'abstract': 'Travel warnings are issued on Egypt, the Ford F-250 is now thieves’ favorite target, regulators crack down on abusive debt collection and other consumer-focused news from The New York Times.',
'web_url': 'https://bucks.blogs.nytimes.com/2013/07/10/wednesday-reading-travel-warnings-issued-on-egypt/',
'snippet': 'Travel warnings are issued on Egypt, the Ford F-250 is now thieves’ favorite target, regulators crack down on abusive debt collection and other consumer-focused news from The New York Times.',
'lead_paragraph': '',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Wednesday Reading: Travel Warnings Issued on Egypt',
'kicker': 'Bucks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2013-07-10T12:11:37+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Your Money',
'byline': {'original': 'By Ann Carrns',
'person': [{'firstname': 'Ann',
'middlename': None,
'lastname': 'Carrns',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8aa4a819-0c1f-51d4-a195-ebf333ef910e',
'word_count': 71,
'uri': 'nyt://article/8aa4a819-0c1f-51d4-a195-ebf333ef910e'},
{'abstract': 'Jessica Alba is known for her acting career, but she is a successful entrepreneur in her own right, after helping start the Honest Company, a provider of diapers and other products.',
'web_url': 'https://dealbook.nytimes.com/2014/12/12/7-things-jessica-alba-said-about-starting-a-business/',
'snippet': 'Jessica Alba is known for her acting career, but she is a successful entrepreneur in her own right, after helping start the Honest Company, a provider of diapers and other products.',
'lead_paragraph': 'The conference sponsored by DealBook on Thursday featured a number of prominent financial leaders.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/13/business/dbpix-alba1/dbpix-alba1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': '7 Things Jessica Alba Said About Starting a Business',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Entrepreneurship',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'ALBA, JESSICA', 'rank': 2, 'major': 'N'},
{'name': 'organizations', 'value': 'Honest Co', 'rank': 3, 'major': 'N'}],
'pub_date': '2014-12-12T17:36:46+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By William Alden',
'person': [{'firstname': 'William',
'middlename': None,
'lastname': 'Alden',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c3024e1c-2f99-5c99-a3b8-ad289e83a56c',
'word_count': 302,
'uri': 'nyt://article/c3024e1c-2f99-5c99-a3b8-ad289e83a56c'},
{'abstract': '“Dumb and Dumber To” reunites Jim Carrey and Jeff Daniels, adds Kathleen Turner and relies heavily on diaper gags.',
'web_url': 'https://www.nytimes.com/2014/11/14/movies/dumb-and-dumber-to-carrey-and-daniels-strike-again.html',
'snippet': '“Dumb and Dumber To” reunites Jim Carrey and Jeff Daniels, adds Kathleen Turner and relies heavily on diaper gags.',
'lead_paragraph': 'In “Dumb and Dumber To,” Peter and Bobby Farrelly — and the stars Jim Carrey and Jeff Daniels — have boldly if unoriginally returned to the scene of their inaugural crime: their 1994 directing debut, “Dumb and Dumber.” An anti-classic of its disreputable, guffawing type, it wasn’t the first movie to elevate human idiocy into an intentional art; Jerry Lewis and “Caddyshack,” among many others, got there long before Lloyd (Mr. Carrey) and Harry (Mr. Daniels) hit the road in their memorably fuzzy puppy-mobile with the wagging tongue.',
'print_section': 'C',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/11/14/arts/14DUMB/DUMB-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/11/14/arts/14DUMB/DUMB-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/DUMB-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-videoSixteenByNine3000-v2.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/11/14/arts/14DUMB/14DUMB-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/14/arts/14DUMB/14DUMB-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Then We Could Swing a Cat From a Chandelier',
'kicker': 'Movie Review',
'content_kicker': None,
'print_headline': 'Then We Could Swing a Cat From a Chandelier',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Farrelly, Bobby', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Farrelly, Peter', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Carrey, Jim', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Daniels, Jeff', 'rank': 5, 'major': 'N'},
{'name': 'persons', 'value': 'Turner, Kathleen', 'rank': 6, 'major': 'N'},
{'name': 'persons', 'value': 'Riggle, Rob', 'rank': 7, 'major': 'N'},
{'name': 'creative_works',
'value': 'Dumb and Dumber To (Movie)',
'rank': 8,
'major': 'N'}],
'pub_date': '2014-11-13T23:57:28+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Manohla Dargis',
'person': [{'firstname': 'Manohla',
'middlename': None,
'lastname': 'Dargis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/8d9cfd7f-3dee-5dbb-8b12-00198e20ac38',
'word_count': 320,
'uri': 'nyt://article/8d9cfd7f-3dee-5dbb-8b12-00198e20ac38'}],
[{'abstract': '“East Towards Home,” a Billy Yalowitz play, features a Jewish New Yorker’s 20th-century mix of storytelling, memories and Woody Guthrie songs.',
'web_url': 'https://www.nytimes.com/2014/01/23/theater/in-east-towards-home-a-red-diaper-baby-grows-up.html',
'snippet': '“East Towards Home,” a Billy Yalowitz play, features a Jewish New Yorker’s 20th-century mix of storytelling, memories and Woody Guthrie songs.',
'lead_paragraph': 'Billy Yalowitz is a young man caught between generations. In “East Towards Home,” his one-act musical drama, the fictional Billy is a Jewish New Yorker, a self-described red-diaper baby (Mommy and Daddy were Communists) born too late for his parents’ revolution. Mostly he’s a Woodstock-era kid who gets stuck regularly in the apartment-building elevator being interrogated by old ladies whose distinguishing accessory is an omnipresent shopping cart. ',
'print_section': 'C',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/01/23/arts/EAST/EAST-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-articleLarge.jpg',
'height': 516,
'width': 600,
'legacy': {'xlarge': 'images/2014/01/23/arts/EAST/EAST-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 516},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-blog480.jpg',
'height': 413,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-blog427.jpg',
'height': 367,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-tmagArticle.jpg',
'height': 509,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-jumbo.jpg',
'height': 880,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-blog225.jpg',
'height': 193,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-master675.jpg',
'height': 580,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-master180.jpg',
'height': 155,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-popup.jpg',
'height': 500,
'width': 582,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-blog533.jpg',
'height': 458,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-tmagSF.jpg',
'height': 311,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-slide.jpg',
'height': 500,
'width': 582,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-superJumbo.jpg',
'height': 1761,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-master1050.jpg',
'height': 903,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-master495.jpg',
'height': 426,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-articleInline.jpg',
'height': 163,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-hpSmall.jpg',
'height': 140,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-blogSmallInline.jpg',
'height': 130,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-mediumFlexible177.jpg',
'height': 152,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/01/23/arts/EAST/EAST-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/23/arts/EAST/EAST-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Traveling Back in Time From the Left, With Context',
'kicker': 'Theater Review',
'content_kicker': None,
'print_headline': 'Traveling Back in Time From the Left, With Context',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Yalowitz, Billy', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Theater for the New City',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-01-22T21:29:30+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Theater',
'byline': {'original': 'By Anita Gates',
'person': [{'firstname': 'Anita',
'middlename': None,
'lastname': 'Gates',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/5e0a79c7-b14c-514a-8f5a-a3bcb96f4245',
'word_count': 279,
'uri': 'nyt://article/5e0a79c7-b14c-514a-8f5a-a3bcb96f4245'},
{'abstract': 'Student Opinion | Tell us where you’d draw a moral line about what desperate people are entitled to do, and why.',
'web_url': 'https://learning.blogs.nytimes.com/2010/03/08/when-is-looting-morally-okay/',
'snippet': 'Student Opinion | Tell us where you’d draw a moral line about what desperate people are entitled to do, and why.',
'lead_paragraph': '“If crushed bodies were the enduring images of Haiti’s earthquake, the most memorable ones of Chile have been of looting,” writes Donald G. McNeil Jr. “When are desperate people entitled to help themselves? And to what?” Tell us what you think, below.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'When Is Looting Morally Okay?',
'kicker': 'The Learning Network',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-03-08T08:05:14+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Education',
'byline': {'original': 'By Katherine Schulten',
'person': [{'firstname': 'Katherine',
'middlename': None,
'lastname': 'Schulten',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/9c374b25-3452-5c8f-99e6-6d56c86ebd09',
'word_count': 389,
'uri': 'nyt://article/9c374b25-3452-5c8f-99e6-6d56c86ebd09'},
{'abstract': 'As it prepares to list shares on the Nasdaq, the fast-growing online marketplace has been hit by a complaint that it allows sales of knockoff diapers.',
'web_url': 'https://www.nytimes.com/2018/07/20/technology/pinduoduo-china-shopping-nasdaq-ipo.html',
'snippet': 'As it prepares to list shares on the Nasdaq, the fast-growing online marketplace has been hit by a complaint that it allows sales of knockoff diapers.',
'lead_paragraph': 'BEIJING — China’s hottest new online bazaar has had a whirlwind year. The number of people shopping on the app, Pinduoduo, has grown more than fivefold since the beginning of 2017, and its parent company is preparing to list shares on the Nasdaq, one of a wave of Chinese tech companies tapping international capital markets this year.',
'print_section': 'B',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/07/21/world/21chinasuit/21chinasuit-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/07/21/world/21chinasuit/21chinasuit-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/merlin_141392352_1b004a1d-bb87-4d11-ad5a-eb3b7d1e9d22-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/merlin_141392352_1b004a1d-bb87-4d11-ad5a-eb3b7d1e9d22-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/merlin_141392352_1b004a1d-bb87-4d11-ad5a-eb3b7d1e9d22-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/merlin_141392352_1b004a1d-bb87-4d11-ad5a-eb3b7d1e9d22-horizontalMediumAt2X.jpg',
'height': 2333,
'width': 3500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/07/21/world/21chinasuit/21chinasuit-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-threeByTwoLargeAt2X.jpg',
'height': 2332,
'width': 3500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/world/21chinasuit/21chinasuit-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Chinese Shopping App Pinduoduo Sued in U.S. Ahead of I.P.O.',
'kicker': None,
'content_kicker': None,
'print_headline': 'Fast-Growing Chinese Shopping App Is Sued in U.S. Ahead of I.P.O.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'E-Commerce',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Pinduoduo (Mobile App)',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': "Daddy's Choice Diapers",
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Copyrights and Copyright Violations',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Suits and Litigation (Civil)',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'China', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Mobile Commerce and Payments',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'Mobile Applications',
'rank': 8,
'major': 'N'}],
'pub_date': '2018-07-20T08:35:21+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Raymond Zhong',
'person': [{'firstname': 'Raymond',
'middlename': None,
'lastname': 'Zhong',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3f9fa0dc-43b7-56f5-941c-5bef28671681',
'word_count': 555,
'uri': 'nyt://article/3f9fa0dc-43b7-56f5-941c-5bef28671681'},
{'abstract': 'Official (product here) of Team U.S.A.',
'web_url': 'https://www.nytimes.com/2012/04/15/education/edlife/educating-olympians.html',
'snippet': 'Official (product here) of Team U.S.A.',
'lead_paragraph': 'TEAM U.S.A. has an official diaper (Pampers) and an official restaurant (McDonald’s). So why not an official educator? The U.S. Olympic Committee has added its first university sponsor. Through 2016, the for-profit DeVry University will offer Olympic athletes full or partial scholarships, with sticker prices up to $60,000. At least 20 Olympians, including two pentathletes, a shooter and a weight lifter, have enrolled. Patrick Sandusky, a U.S. committee spokesman, cites the convenience of online programs for athletes trying to cram while training. As for sports, the school of management does have club basketball.',
'print_section': 'ED',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/05/education/edl-15olympics/edl-15olympics-jumbo.jpg',
'height': 1024,
'width': 788,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/05/education/edl-15olympics/edl-15olympics-popup.jpg',
'height': 500,
'width': 385,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/05/education/edl-15olympics/edl-15olympics-articleInline.jpg',
'height': 247,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/05/education/edl-15olympics/edl-15olympics-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/04/05/education/edl-15olympics/edl-15olympics-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Educating Olympians',
'kicker': 'Scholarships | Sports',
'content_kicker': None,
'print_headline': 'Official (Product Here) of Team U.S.A.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Olympic Games (2016)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Scholarships and Fellowships',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'DeVry University',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Colleges and Universities',
'rank': 4,
'major': 'N'}],
'pub_date': '2012-04-13T23:00:07+0000',
'document_type': 'article',
'news_desk': 'EdLife',
'section_name': 'Education',
'subsection_name': 'Education Life',
'byline': {'original': 'By Ken Belson',
'person': [{'firstname': 'Ken',
'middlename': None,
'lastname': 'Belson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5848c55d-0212-572c-b048-dce787d8e87c',
'word_count': 96,
'uri': 'nyt://article/5848c55d-0212-572c-b048-dce787d8e87c'},
{'abstract': 'Kenerly Alvarez, 4, has Down syndrome, and her father is disabled, but the Manhattan family is making progress with the assistance of a center that helps children with developmental delays.',
'web_url': 'https://www.nytimes.com/2016/11/24/nyregion/neediest-cases-jose-alvarez.html',
'snippet': 'Kenerly Alvarez, 4, has Down syndrome, and her father is disabled, but the Manhattan family is making progress with the assistance of a center that helps children with developmental delays.',
'lead_paragraph': 'Jose Alvarez has trouble sleeping. It is the pain from his back injury. It is the stress of paying the bills. It is the worry that his daughter will never live a normal life.',
'print_section': 'A',
'print_page': '24',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-articleLarge.jpg',
'height': 480,
'width': 600,
'legacy': {'xlarge': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 480},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-blog480.jpg',
'height': 384,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-blog427.jpg',
'height': 341,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-tmagArticle.jpg',
'height': 473,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-jumbo.jpg',
'height': 819,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-blog225.jpg',
'height': 180,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-master675.jpg',
'height': 540,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-master180.jpg',
'height': 144,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-master768.jpg',
'height': 614,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-popup.jpg',
'height': 500,
'width': 626,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-blog533.jpg',
'height': 426,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-tmagSF.jpg',
'height': 289,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-slide.jpg',
'height': 480,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-superJumbo.jpg',
'height': 1638,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-master1050.jpg',
'height': 840,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-master495.jpg',
'height': 396,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-master315.jpg',
'height': 252,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-articleInline.jpg',
'height': 152,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-hpSmall.jpg',
'height': 130,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-blogSmallInline.jpg',
'height': 121,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-mediumFlexible177.jpg',
'height': 142,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/25/nyregion/25neediestalvarez/25neediestalvarez-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'The Glorious Achievement of Zipping Up a Sweatshirt',
'kicker': 'The Neediest Cases',
'content_kicker': None,
'print_headline': 'Family Settles in New York, Seeking Help for a Child',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Peiser, Jaclyn',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Times Neediest Cases Fund',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Catholic Charities Archdiocese of New York',
'rank': 3,
'major': 'N'}],
'pub_date': '2016-11-24T16:00:04+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Jaclyn Peiser',
'person': [{'firstname': 'Jaclyn',
'middlename': None,
'lastname': 'Peiser',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/97a34187-6194-5f5f-ae14-a944fde1ca10',
'word_count': 858,
'uri': 'nyt://article/97a34187-6194-5f5f-ae14-a944fde1ca10'},
{'abstract': 'The magazine’s Ethicist on speaking up for a member of the household — when it’s a pet.',
'web_url': 'https://www.nytimes.com/2022/09/13/magazine/pet-roommate-ethics.html',
'snippet': 'The magazine’s Ethicist on speaking up for a member of the household — when it’s a pet.',
'lead_paragraph': 'My roommate and I have lived together for some years. We are not close but get along well. He mainly keeps to himself, sleeping most of the day and staying up at night. He is very well off and enjoys many luxuries but has long struggled with depression.',
'print_section': 'MM',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-articleLarge.jpg',
'height': 336,
'width': 600,
'legacy': {'xlarge': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 336},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-popup.jpg',
'height': 364,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-blog480.jpg',
'height': 269,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-blog533.jpg',
'height': 299,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-blog427.jpg',
'height': 239,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-tmagSF.jpg',
'height': 203,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-tmagArticle.jpg',
'height': 332,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-slide.jpg',
'height': 336,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-jumbo.jpg',
'height': 574,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-superJumbo.jpg',
'height': 1148,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-blog225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-master1050.jpg',
'height': 589,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-master675.jpg',
'height': 378,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-master495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-master180.jpg',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-master315.jpg',
'height': 177,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-master768.jpg',
'height': 431,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumSquareAt3X.jpg',
'height': 1400,
'width': 1401,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-horizontalMediumAt2X.jpg',
'height': 1400,
'width': 2102,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-threeByTwoLargeAt2X.jpg',
'height': 1400,
'width': 2102,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-articleInline.jpg',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-hpSmall.jpg',
'height': 91,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mediumFlexible177.jpg',
'height': 99,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/18/magazine/18mag-ethicist/18mag-ethicist-mobileMasterAt3x.jpg',
'height': 1009,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'My Roommate Is Neglecting His Dog. What Should I Do?',
'kicker': 'The Ethicist',
'content_kicker': None,
'print_headline': 'My Roommate Isn’t Looking After His Dog. Should I Speak Up?',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'internal-sub-only',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Ethics (Personal)', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Pets', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Roommates', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Real Estate and Housing (Residential)',
'rank': 5,
'major': 'N'}],
'pub_date': '2022-09-13T09:00:11+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Kwame Anthony Appiah',
'person': [{'firstname': 'Kwame',
'middlename': 'Anthony',
'lastname': 'Appiah',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/167d873f-a3d9-5acb-8b0e-c7d53b97f38d',
'word_count': 1479,
'uri': 'nyt://article/167d873f-a3d9-5acb-8b0e-c7d53b97f38d'},
{'abstract': 'Is freedom the ability to replace the power suit with a onesie? Plus other questions of gender and identity at Margiela.',
'web_url': 'https://www.nytimes.com/2019/02/27/fashion/dior-saint-laurent-maison-margiela-paris.html',
'snippet': 'Is freedom the ability to replace the power suit with a onesie? Plus other questions of gender and identity at Margiela.',
'lead_paragraph': 'PARIS — In some ways, Maria Grazia Chiuri, the artistic director of Christian Dior women’s wear, should have been made for this particular sociopolitical moment: a time when a former campaign staffer is no longer afraid to sue the president of the United States for alleged sexual misconduct, and women who kept silent for decades are finally bringing an R&B star to justice for what they say was predatory sexual behavior.',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-horizontalMediumAt2X.jpg',
'height': 1690,
'width': 2535,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-threeByTwoLargeAt2X.jpg',
'height': 1690,
'width': 2535,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/28/fashion/28DIOR-INYT-dior/28DIOR-INYT-dior-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Feminism in the Playground of Dior and Saint Laurent',
'kicker': 'Fashion Review',
'content_kicker': None,
'print_headline': 'Feminism in the playground',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Paris Fashion Week',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Christian Dior SA',
'rank': 3,
'major': 'N'},
{'name': 'persons',
'value': 'Chiuri, Maria Grazia',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Yves Saint Laurent',
'rank': 5,
'major': 'N'},
{'name': 'persons',
'value': 'Vaccarello, Anthony',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Maison Margiela (Fashion Label)',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Galliano, John', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'your-feed-fashion',
'rank': 9,
'major': 'N'}],
'pub_date': '2019-02-27T15:58:39+0000',
'document_type': 'article',
'news_desk': 'SpecialSections',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Vanessa Friedman',
'person': [{'firstname': 'Vanessa',
'middlename': None,
'lastname': 'Friedman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/49b33a89-7b15-5a34-a9ca-adc1cb3c07f6',
'word_count': 954,
'uri': 'nyt://article/49b33a89-7b15-5a34-a9ca-adc1cb3c07f6'},
{'abstract': 'Amazon.com plans to announce Monday that it will acquire Quidsi, the e-commerce company that runs Diapers.com, for about $540 million, The New York Times reports.',
'web_url': 'https://dealbook.nytimes.com/2010/11/08/amazon-to-announce-deal-for-parent-of-diapers-com/',
'snippet': 'Amazon.com plans to announce Monday that it will acquire Quidsi, the e-commerce company that runs Diapers.com, for about $540 million, The New York Times reports.',
'lead_paragraph': 'Amazon.com plans to announce on Monday that it will acquire Quidsi, the e-commerce company that runs Diapers.com, for about $540 million, according to a person with knowledge of the deal.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Amazon Opens Wallet Again, for Diapers.com’s Parent',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-11-08T07:02:21+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Dealbook',
'person': [{'firstname': 'Dealbook',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/ea5a344c-d87f-5ab8-ae9a-6d3ee6ab5f5f',
'word_count': 106,
'uri': 'nyt://article/ea5a344c-d87f-5ab8-ae9a-6d3ee6ab5f5f'},
{'abstract': 'The leaders of Britain’s main political parties have relentlessly presented themselves as diaper-changing, maternity-leave-supporting, dinner-cooking family men.',
'web_url': 'https://www.nytimes.com/2010/04/09/world/europe/09britain.html',
'snippet': 'The leaders of Britain’s main political parties have relentlessly presented themselves as diaper-changing, maternity-leave-supporting, dinner-cooking family men.',
'lead_paragraph': 'LONDON — They have submitted to sharp questioning in live Web chats on Mumsnet, the popular social networking site for mothers. They have sat for lengthy interviews with Cosmopolitan, Glamour and other female-friendly publications, and regularly deployed their wives in an effort to establish good domestic-coziness credentials. ',
'print_section': 'A',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/04/09/world/09britain_CA1/09britain_CA1-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2010/04/09/world/09britain_CA1/09britain_CA1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/04/09/world/09britain_CA1/09britain_CA1-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/04/09/world/09britain_CA1/09britain_CA1-articleInline.jpg',
'height': 128,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/04/09/world/09britain_CA1/09britain_CA1-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/04/09/world/09britain_CA1/09britain_CA1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/04/09/world/09britain_CA1/09britain_CA1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Courting the U.K. Women’s Vote, Online and Unrelenting',
'kicker': None,
'content_kicker': None,
'print_headline': 'British Candidates (and Wives) Court ‘Women’s Vote’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Great Britain',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Elections', 'rank': 4, 'major': 'N'}],
'pub_date': '2010-04-08T20:08:01+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Sarah Lyall',
'person': [{'firstname': 'Sarah',
'middlename': None,
'lastname': 'Lyall',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/738d8c8f-36f4-5ecf-9fef-7259dc2bd429',
'word_count': 944,
'uri': 'nyt://article/738d8c8f-36f4-5ecf-9fef-7259dc2bd429'},
{'abstract': '“I mean, he cut his approval rating in half in three months,” Fallon joked on Tuesday.',
'web_url': 'https://www.nytimes.com/2021/11/03/arts/television/jimmy-fallon-joe-biden-approval-ratings.html',
'snippet': '“I mean, he cut his approval rating in half in three months,” Fallon joked on Tuesday.',
'lead_paragraph': 'Welcome to Best of Late Night, a rundown of the previous night’s highlights that lets you sleep — and lets us get paid to watch comedy. Here are the 50 best movies on Netflix right now.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-articleLarge.png',
'height': 336,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/03/arts/03latenight/03latenight-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 336},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-popup.png',
'height': 364,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-blog480.png',
'height': 269,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-blog533.png',
'height': 299,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-blog427.png',
'height': 239,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-tmagSF.png',
'height': 203,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-tmagArticle.png',
'height': 332,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-slide.png',
'height': 336,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-jumbo.png',
'height': 415,
'width': 741,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-superJumbo.png',
'height': 415,
'width': 741,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-blog225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-master675.png',
'height': 378,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-master495.png',
'height': 277,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-master180.png',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-master315.png',
'height': 176,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/03/arts/03latenight/03latenight-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-smallSquare168.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-smallSquare252.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumSquareAt3X.png',
'height': 415,
'width': 415,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-sfSpan.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-largeHorizontalJumbo.png',
'height': 415,
'width': 623,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-horizontalMediumAt2X.png',
'height': 415,
'width': 623,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-hpLarge.png',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-largeWidescreen573.png',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/03/arts/03latenight/03latenight-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumThreeByTwo440.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumThreeByTwo252.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumThreeByTwo378.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-threeByTwoLargeAt2X.png',
'height': 415,
'width': 623,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-threeByTwoMediumAt2X.png',
'height': 415,
'width': 623,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-threeByTwoSmallAt2X.png',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-articleInline.png',
'height': 106,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-hpSmall.png',
'height': 91,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-blogSmallInline.png',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mediumFlexible177.png',
'height': 99,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNine150.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-videoSixteenByNineJumbo1600.png',
'height': 415,
'width': 737,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-facebookJumbo.png',
'height': 387,
'width': 741,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-watch308.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-watch268.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/03/arts/03latenight/03latenight-mobileMasterAt3x.png',
'height': 415,
'width': 741,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Jimmy Fallon: Biden Can Cut Emissions Just as He Did His Ratings',
'kicker': 'Best of Late Night',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Television',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Colbert, Stephen', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Fallon, Jimmy', 'rank': 3, 'major': 'N'},
{'name': 'persons',
'value': 'Noah, Trevor (1984- )',
'rank': 4,
'major': 'N'},
{'name': 'creative_works',
'value': 'The Tonight Show (TV Program)',
'rank': 5,
'major': 'N'},
{'name': 'creative_works',
'value': 'The Daily Show with Trevor Noah (TV Program)',
'rank': 6,
'major': 'N'},
{'name': 'creative_works',
'value': 'Late Show with Stephen Colbert (TV Program)',
'rank': 7,
'major': 'N'},
{'name': 'creative_works',
'value': 'Jimmy Kimmel Live (TV Program)',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Meyers, Seth', 'rank': 9, 'major': 'N'},
{'name': 'creative_works',
'value': 'Late Night with Seth Meyers (TV Program)',
'rank': 10,
'major': 'N'}],
'pub_date': '2021-11-03T05:57:53+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Television',
'byline': {'original': 'By Trish Bendix',
'person': [{'firstname': 'Trish',
'middlename': None,
'lastname': 'Bendix',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f10a0832-4ac6-5f60-b586-ee9522c4301f',
'word_count': 541,
'uri': 'nyt://article/f10a0832-4ac6-5f60-b586-ee9522c4301f'}],
[{'abstract': 'Get the right equipment. Line up temporary sitters just in case.',
'web_url': 'https://www.nytimes.com/2016/01/17/magazine/how-to-take-your-baby-to-work.html',
'snippet': 'Get the right equipment. Line up temporary sitters just in case.',
'lead_paragraph': '‘‘Leave the room if you have to change a diaper,’’ says Licia Ronzulli, an Italian member of the European Parliament who started taking her daughter to work at the age of 6 weeks. More broadly, recognize the type of interruption that requires a quick exit (mostly soiled diapers and crying sprees), but otherwise get comfortable responding to a child’s needs while on the job.',
'print_section': 'MM',
'print_page': '25',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-articleLarge.jpg',
'height': 758,
'width': 600,
'legacy': {'xlarge': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 758},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-blog480.jpg',
'height': 607,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-blog427.jpg',
'height': 540,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-tmagArticle.jpg',
'height': 748,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-jumbo.jpg',
'height': 1024,
'width': 811,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-blog225.jpg',
'height': 284,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-master675.jpg',
'height': 853,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-master180.jpg',
'height': 228,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-master768.jpg',
'height': 971,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-popup.jpg',
'height': 500,
'width': 396,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-blog533.jpg',
'height': 674,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-tmagSF.jpg',
'height': 458,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-slide.jpg',
'height': 500,
'width': 396,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-superJumbo.jpg',
'height': 1547,
'width': 1224,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-master1050.jpg',
'height': 1327,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-master495.jpg',
'height': 626,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-master315.jpg',
'height': 398,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-articleInline.jpg',
'height': 240,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-hpSmall.jpg',
'height': 206,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-blogSmallInline.jpg',
'height': 191,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-mediumFlexible177.jpg',
'height': 224,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/17/magazine/17tip/17mag-17tip-t_CA0-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'How to Take Your Baby to Work',
'kicker': 'Tip',
'content_kicker': None,
'print_headline': 'How to Take Your Baby to Work',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Ronzulli, Licia (1975- )',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Work-Life Balance', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 5,
'major': 'N'}],
'pub_date': '2016-01-15T12:44:48+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Malia Wollan',
'person': [{'firstname': 'Malia',
'middlename': None,
'lastname': 'Wollan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/fe9eb09e-c701-5954-89ce-d140bbc8bc4b',
'word_count': 375,
'uri': 'nyt://article/fe9eb09e-c701-5954-89ce-d140bbc8bc4b'},
{'abstract': 'Don’t rush your toddler into using the toilet before he’s ready. The process takes patience, preparation and praise.',
'web_url': 'https://www.nytimes.com/article/potty-training-guide.html',
'snippet': 'Don’t rush your toddler into using the toilet before he’s ready. The process takes patience, preparation and praise.',
'lead_paragraph': 'This guide was originally published on July 5, 2019.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-superJumbo.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumSquareAt3X.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-threeByTwoLargeAt2X.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/17/multimedia/5parenting-pottyTraining/5parenting-pottyTraining-mobileMasterAt3x.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Start Potty Training',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Toilet Training',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'persons', 'value': 'Porto, Anthony F', 'rank': 6, 'major': 'N'}],
'pub_date': '2020-04-16T02:38:33+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Guides',
'byline': {'original': 'By Dina DiMaggio',
'person': [{'firstname': 'Dina',
'middlename': None,
'lastname': 'DiMaggio',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9d291441-6872-5f60-9ed4-b65f38f7c759',
'word_count': 2512,
'uri': 'nyt://article/9d291441-6872-5f60-9ed4-b65f38f7c759'},
{'abstract': 'Erika Murray, the 31-year-old woman who the authorities believe is the mother of the children, has been ordered held without bail.',
'web_url': 'https://www.nytimes.com/2014/09/13/us/bodies-of-infants-found-in-massachusetts-home.html',
'snippet': 'Erika Murray, the 31-year-old woman who the authorities believe is the mother of the children, has been ordered held without bail.',
'lead_paragraph': 'When officers responded to a report of a crying, possibly neglected child at a modest house a block from police headquarters in Blackstone, Mass., they unwittingly uncovered a situation so horrifying that the police chief on Friday said it had tested the entire town.',
'print_section': 'A',
'print_page': '13',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-articleLarge.jpg',
'height': 420,
'width': 600,
'legacy': {'xlarge': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 420},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-blog480.jpg',
'height': 336,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-blog427.jpg',
'height': 299,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-tmagArticle.jpg',
'height': 414,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-jumbo.jpg',
'height': 717,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-blog225.jpg',
'height': 158,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-master675.jpg',
'height': 473,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-master180.jpg',
'height': 126,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-popup.jpg',
'height': 455,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-blog533.jpg',
'height': 373,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-tmagSF.jpg',
'height': 253,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-slide.jpg',
'height': 420,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-superJumbo.jpg',
'height': 1434,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-master1050.jpg',
'height': 735,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-master495.jpg',
'height': 347,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-master315.jpg',
'height': 221,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-articleInline.jpg',
'height': 133,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-hpSmall.jpg',
'height': 114,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-blogSmallInline.jpg',
'height': 106,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-mediumFlexible177.jpg',
'height': 124,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/13/us/13BLACKSTONE2/13BLACKSTONE2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Massachusetts Town Shudders After Discovery of Dead Infants',
'kicker': None,
'content_kicker': None,
'print_headline': 'Town in Massachusetts Shudders After Discovery of Dead Infants in House',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Child Abuse and Neglect',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Blackstone (Mass)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 6,
'major': 'N'}],
'pub_date': '2014-09-12T15:17:29+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Timothy Williams',
'person': [{'firstname': 'Timothy',
'middlename': None,
'lastname': 'Williams',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/280411c3-a2be-56a1-83de-44dff16e71d5',
'word_count': 717,
'uri': 'nyt://article/280411c3-a2be-56a1-83de-44dff16e71d5'},
{'abstract': 'To continue touring, a rock band profiled in Auto Ego in The Times recently had to abandon its long-suffering church van and trade up to a Dodge Sprinter.',
'web_url': 'https://wheels.blogs.nytimes.com/2011/03/15/church-van-no-longer-with-the-band/',
'snippet': 'To continue touring, a rock band profiled in Auto Ego in The Times recently had to abandon its long-suffering church van and trade up to a Dodge Sprinter.',
'lead_paragraph': '“The fame put it over the edge,” said J. Roddy Walston.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Church Van No Longer With the Band',
'kicker': 'Wheels',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Automobiles',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Vans', 'rank': 2, 'major': 'N'}],
'pub_date': '2011-03-15T20:00:49+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Automobiles',
'byline': {'original': 'By Richard S. Chang',
'person': [{'firstname': 'Richard',
'middlename': 'S.',
'lastname': 'Chang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/33368f5d-104c-5041-bbd6-39575f5820a0',
'word_count': 419,
'uri': 'nyt://article/33368f5d-104c-5041-bbd6-39575f5820a0'},
{'abstract': 'How old is too old to use the bushes as a bathroom?',
'web_url': 'https://parenting.blogs.nytimes.com/2010/11/23/using-public-spaces-as-a-potty/',
'snippet': 'How old is too old to use the bushes as a bathroom?',
'lead_paragraph': 'As the mother of two sons, I have been grateful more than once over the years for the things that are easier about boys.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Using Public Spaces as a Potty',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-11-23T21:00:00+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/03787799-0667-5cca-98ff-98b8d3d00420',
'word_count': 411,
'uri': 'nyt://article/03787799-0667-5cca-98ff-98b8d3d00420'},
{'abstract': 'Where small children go, messes follow. A well-used stroller is likely to be stained by spilled drinks, smeared sunscreen, and muddy shoes. Crumbs, dirt, and sand will have found their way into every crevice. A particularly unlucky day might have even seen a diaper blowout, a potty-training accident, or projectile vomit. All that is to...',
'web_url': 'https://www.nytimes.com/wirecutter/guides/how-to-clean-a-stroller/',
'snippet': 'Where small children go, messes follow. A well-used stroller is likely to be stained by spilled drinks, smeared sunscreen, and muddy shoes. Crumbs, dirt, and sand will have found their way into every crevice. A particularly unlucky day might have ...',
'lead_paragraph': 'Where small children go, messes follow. A well-used stroller is likely to be stained by spilled drinks, smeared sunscreen, and muddy shoes. Crumbs, dirt, and sand will have found their way into every crevice. A particularly unlucky day might have even seen a diaper blowout, a potty-training accident, or projectile vomit. All that is to...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/10/clean-everything-stroller-2048px-1869-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/10/clean-everything-stroller-2048px-1869-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/10/clean-everything-stroller-2048px-1869-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/10/clean-everything-stroller-2048px-1869-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'How to Clean a Stroller',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2022-10-20T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/d8ebd7ce-16a1-5268-9613-2ae2a11bb03a',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/d8ebd7ce-16a1-5268-9613-2ae2a11bb03a'},
{'abstract': 'Menstrual products are subject to sales taxes in 35 states, and lawmakers’ efforts to exempt them have foundered. Now supporters of ‘menstrual equity’ are considering legal action.',
'web_url': 'https://www.nytimes.com/2019/07/12/us/tampon-tax.html',
'snippet': 'Menstrual products are subject to sales taxes in 35 states, and lawmakers’ efforts to exempt them have foundered. Now supporters of ‘menstrual equity’ are considering legal action.',
'lead_paragraph': 'Why are tampons taxed when Viagra isn’t? ',
'print_section': 'B',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-articleLarge.jpg',
'height': 464,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 464},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-popup.jpg',
'height': 500,
'width': 646,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-blog480.jpg',
'height': 372,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-blog533.jpg',
'height': 413,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-blog427.jpg',
'height': 330,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-tmagSF.jpg',
'height': 280,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-tmagArticle.jpg',
'height': 458,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-slide.jpg',
'height': 464,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-jumbo.jpg',
'height': 793,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-superJumbo.jpg',
'height': 1585,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-blog225.jpg',
'height': 174,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-master1050.jpg',
'height': 813,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-master675.jpg',
'height': 522,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-master495.jpg',
'height': 383,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-master180.jpg',
'height': 139,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-master315.jpg',
'height': 244,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-master768.jpg',
'height': 594,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-horizontalMediumAt2X.jpg',
'height': 2001,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-threeByTwoLargeAt2X.jpg',
'height': 2001,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-articleInline.jpg',
'height': 147,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-hpSmall.jpg',
'height': 126,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-blogSmallInline.jpg',
'height': 117,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/merlin_156250173_354af687-add8-47e0-94a3-00fd117d22cd-mediumFlexible177.jpg',
'height': 137,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/health/11xp-tampontax/11xp-tampontax-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '22 States Considered Eliminating the ‘Tampon Tax’ This Year. Here’s What Happened.',
'kicker': None,
'content_kicker': None,
'print_headline': '‘Tampon Tax’ Survives Despite Push for Equity',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'State Legislatures',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Menstruation', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Taxation', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Sales and Excise Taxes',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Tax Credits, Deductions and Exemptions',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Discrimination', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Suits and Litigation (Civil)',
'rank': 8,
'major': 'N'},
{'name': 'subject', 'value': "Women's Rights", 'rank': 9, 'major': 'N'}],
'pub_date': '2019-07-12T09:00:09+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Karen Zraick',
'person': [{'firstname': 'Karen',
'middlename': None,
'lastname': 'Zraick',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/fc4f4473-d109-504a-a818-de7f4abf7ac6',
'word_count': 1212,
'uri': 'nyt://article/fc4f4473-d109-504a-a818-de7f4abf7ac6'},
{'abstract': 'A carefully plotted parental playbook can help with meltdowns and maladies.',
'web_url': 'https://www.nytimes.com/2017/08/09/travel/long-flights-tips-travel-children.html',
'snippet': 'A carefully plotted parental playbook can help with meltdowns and maladies.',
'lead_paragraph': '',
'print_section': 'TR',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-master768.jpg',
'height': 511,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/13/travel/13LONGHAUL5/13LONGHAUL5-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'}],
'headline': {'main': '8 Ways to Tackle Long-Haul Flights With Children',
'kicker': 'Pursuits',
'content_kicker': None,
'print_headline': '8 Ways to Tackle Long Flights With Children',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'}],
'pub_date': '2017-08-09T09:00:37+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Amy Tara Koch',
'person': [{'firstname': 'Amy',
'middlename': 'Tara',
'lastname': 'Koch',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2de0172b-2a14-51b9-9149-204f164cdbfa',
'word_count': 1809,
'uri': 'nyt://article/2de0172b-2a14-51b9-9149-204f164cdbfa'},
{'abstract': 'Congress to look at telecommunications and Sarah Ferguson hopes to still sell children’s books in today’s media coverage.',
'web_url': 'https://mediadecoder.blogs.nytimes.com/2010/05/25/speed-read-for-tuesday-may-25/',
'snippet': 'Congress to look at telecommunications and Sarah Ferguson hopes to still sell children’s books in today’s media coverage.',
'lead_paragraph': 'Highlights from today’s media coverage in The New York Times:',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Speed Read for Tuesday, May 25',
'kicker': 'Media Decoder',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-05-25T12:47:22+0000',
'document_type': 'article',
'news_desk': 'Media',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By The Editors',
'person': [],
'organization': 'The Editors'},
'_id': 'nyt://article/0a8264e8-e378-5493-a105-22b5ca76df4a',
'word_count': 127,
'uri': 'nyt://article/0a8264e8-e378-5493-a105-22b5ca76df4a'},
{'abstract': 'Volkswagen is just one recent example of a company that has promoted its environmental credentials with claims that are exaggerated or just made up.',
'web_url': 'https://www.nytimes.com/2015/10/18/business/energy-environment/social-responsibility-that-rubs-right-off.html',
'snippet': 'Volkswagen is just one recent example of a company that has promoted its environmental credentials with claims that are exaggerated or just made up.',
'lead_paragraph': 'Until recently, Volkswagen was waging a relentless campaign to portray itself as an environmental steward, its cars on the vanguard of a clean energy revolution. It promoted diesel as a low-emissions alternative to gasoline and spent $77 million this year in the American market to advertise its diesel cars, often proclaiming their greenness.',
'print_section': 'BU',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/10/18/business/REVALUED/REVALUED-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-articleLarge.jpg',
'height': 550,
'width': 600,
'legacy': {'xlarge': 'images/2015/10/18/business/REVALUED/REVALUED-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 550},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-blog480.jpg',
'height': 440,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-blog427.jpg',
'height': 391,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-tmagArticle.jpg',
'height': 542,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-jumbo.jpg',
'height': 938,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-blog225.jpg',
'height': 206,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-master675.jpg',
'height': 618,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-master180.jpg',
'height': 165,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-popup.jpg',
'height': 500,
'width': 546,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-blog533.jpg',
'height': 488,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-tmagSF.jpg',
'height': 332,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-slide.jpg',
'height': 500,
'width': 546,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-superJumbo.jpg',
'height': 1876,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-master1050.jpg',
'height': 962,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-master495.jpg',
'height': 453,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-master315.jpg',
'height': 289,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-articleInline.jpg',
'height': 174,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-hpSmall.jpg',
'height': 149,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-blogSmallInline.jpg',
'height': 138,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-mediumFlexible177.jpg',
'height': 162,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/10/18/business/REVALUED/REVALUED-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/18/business/REVALUED/REVALUED-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Social Responsibility That Rubs Right Off',
'kicker': 'Revalued',
'content_kicker': None,
'print_headline': 'Social Responsibility That Rubs Right Off',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sustainable Living',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Volkswagen AG',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Environment', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Lululemon Athletica Inc',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Federal Trade Commission',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Delmas, Magali', 'rank': 8, 'major': 'N'}],
'pub_date': '2015-10-17T15:56:57+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Business Day',
'subsection_name': 'Energy & Environment ',
'byline': {'original': 'By David Gelles',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Gelles',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4ec07bb7-8044-5e9a-adac-1e45d20d68ee',
'word_count': 1014,
'uri': 'nyt://article/4ec07bb7-8044-5e9a-adac-1e45d20d68ee'}],
[{'abstract': 'At Nick’s Discount Store in Bath Beach, the merchandise includes lawn ornaments, skin lotion, pet supplies — and there’s a deli up front.',
'web_url': 'https://cityroom.blogs.nytimes.com/2011/12/08/nicks-discount-stor/',
'snippet': 'At Nick’s Discount Store in Bath Beach, the merchandise includes lawn ornaments, skin lotion, pet supplies — and there’s a deli up front.',
'lead_paragraph': 'Not all of Brooklyn glows with gentrification. Deep in the borough’s southwest pocket is Bath Beach, a few dozen blocks sandwiched between Bensonhurst and the Belt Parkway. Shuttered storefronts and signs in competing languages testify to economic hardship and ethnic flux. But amid the comings and goings is a monument to fortitude: Nick’s Discount Store.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'A Brooklyn Store Offers Astounding Variety, With Patter',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-12-08T23:30:49+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Andrew Cotto',
'person': [{'firstname': 'Andrew',
'middlename': None,
'lastname': 'Cotto',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/195abefa-c5a0-5d1c-b2b1-2e106381bd42',
'word_count': 126,
'uri': 'nyt://article/195abefa-c5a0-5d1c-b2b1-2e106381bd42'},
{'abstract': 'Another baby, another request for friends and family to give a gift. Mothers uncomfortable with that are being given smaller, more casual parties where the gifts are also more modest.',
'web_url': 'https://www.nytimes.com/2012/12/09/fashion/celebrating-a-new-baby-but-modestly.html',
'snippet': 'Another baby, another request for friends and family to give a gift. Mothers uncomfortable with that are being given smaller, more casual parties where the gifts are also more modest.',
'lead_paragraph': 'WHEN Tori Males was pregnant with her first child more than three years ago, friends and family helped her celebrate the impending arrival with three elaborate baby showers. So when Ms. Males, a 31-year-old loan administrator from Woodstock, Ill., was due again earlier this year, she didn’t want or expect another fete.',
'print_section': 'ST',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-articleLarge.jpg',
'height': 360,
'width': 600,
'legacy': {'xlarge': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 360},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3-blog480.jpg',
'height': 315,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3-jumbo.jpg',
'height': 672,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-articleLarge.jpg',
'height': 360,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3-superJumbo.jpg',
'height': 1345,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-sfSpan.jpg',
'height': 260,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/09/fashion/09SHOWERS3_SPAN/09SHOWERS3_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'For Baby No. 2 or 3, No Shower but a Sprinkle',
'kicker': None,
'content_kicker': None,
'print_headline': 'For Baby No. 2 or 3, No Shower but a Sprinkle',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Gifts', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Baby Carriages, Strollers and Carriers',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parties (Social)', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 6,
'major': 'N'}],
'pub_date': '2012-12-08T00:29:03+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Shivani Vora',
'person': [{'firstname': 'Shivani',
'middlename': None,
'lastname': 'Vora',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e62a2598-dcc3-5839-ba60-c52d69de801b',
'word_count': 965,
'uri': 'nyt://article/e62a2598-dcc3-5839-ba60-c52d69de801b'},
{'abstract': 'Tips for dog owners on training and preparing their pets for life in a co-op.',
'web_url': 'https://www.nytimes.com/2017/07/07/realestate/interview-prep-for-dogs.html',
'snippet': 'Tips for dog owners on training and preparing their pets for life in a co-op.',
'lead_paragraph': 'Tips for dog owners on training and preparing their pets for life in a co-op.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/09/realestate/09DOGS-side/09DOGS-side-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Interview Prep for Dogs',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Dogs', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Cooperatives', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Real Estate and Housing (Residential)',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 4, 'major': 'N'}],
'pub_date': '2017-07-07T09:00:10+0000',
'document_type': 'article',
'news_desk': 'RealEstate',
'section_name': 'Real Estate',
'byline': {'original': 'By Kathleen Beckett',
'person': [{'firstname': 'Kathleen',
'middlename': None,
'lastname': 'Beckett',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6724936e-c450-5691-b6c0-9e69beea24a9',
'word_count': 493,
'uri': 'nyt://article/6724936e-c450-5691-b6c0-9e69beea24a9'},
{'abstract': 'Hiking carriers are a great way to introduce your little one to the magic of exploring the outdoors, as well as to ensure that you keep getting outside after you become a parent. We carried our infant and toddler sidekicks in 10 different carriers across almost 100 miles before concluding that the Deuter Kid Comfort...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-hiking-baby-carriers/',
'snippet': 'Hiking carriers are a great way to introduce your little one to the magic of exploring the outdoors, as well as to ensure that you keep getting outside after you become a parent. We carried our infant and toddler sidekicks in 10 different carriers...',
'lead_paragraph': 'Hiking carriers are a great way to introduce your little one to the magic of exploring the outdoors, as well as to ensure that you keep getting outside after you become a parent. We carried our infant and toddler sidekicks in 10 different carriers across almost 100 miles before concluding that the Deuter Kid Comfort...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/03/hikingbabycarriers-2048px-5669-2.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/03/hikingbabycarriers-2048px-5669-2.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/03/hikingbabycarriers-2048px-5669-2.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/03/hikingbabycarriers-2048px-5669-2.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Hiking Baby Carriers',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2017-03-29T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/8af203b9-8c68-5b1b-8ab0-b3e881c7d7a6',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/8af203b9-8c68-5b1b-8ab0-b3e881c7d7a6'},
{'abstract': 'Do economic and societal pressures influence women’s career choices without our registering their impact?',
'web_url': 'https://parenting.blogs.nytimes.com/2012/04/24/the-unconscious-impact-of-the-conflict/',
'snippet': 'Do economic and societal pressures influence women’s career choices without our registering their impact?',
'lead_paragraph': 'Motherlode has asked women at different stages of their family and career lives to respond to Elisabeth Badinter’s “The Conflict” by describing how reading it has affected their views or plans for work and motherhood. The following is a continuation of an ongoing conversation. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Unconscious Impact of ‘The Conflict’',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Careers and Professions',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 6, 'major': 'N'},
{'name': 'persons',
'value': 'Badinter, Elisabeth',
'rank': 7,
'major': 'N'}],
'pub_date': '2012-04-24T23:12:24+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Marie C. Baca',
'person': [{'firstname': 'Marie',
'middlename': 'C.',
'lastname': 'Baca',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/45a56d11-2ae5-5aa7-a937-b4e5f8f04b96',
'word_count': 486,
'uri': 'nyt://article/45a56d11-2ae5-5aa7-a937-b4e5f8f04b96'},
{'abstract': 'Florence Fabricant offers advice on what to do when a black-tie affair doesn’t live up to its billing.',
'web_url': 'https://dinersjournal.blogs.nytimes.com/2012/09/13/dear-flofab-black-tie-and-paper-plates/',
'snippet': 'Florence Fabricant offers advice on what to do when a black-tie affair doesn’t live up to its billing.',
'lead_paragraph': 'Florence Fabricant gives advice on the fine points of entertaining at home and eating in restaurants. Have a dining dilemma? Ask FloFab.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Dear FloFab: Black Tie and Paper Plates',
'kicker': 'Diner's Journal',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Customs, Etiquette and Manners',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Restaurants', 'rank': 2, 'major': 'N'}],
'pub_date': '2012-09-13T19:25:13+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Florence Fabricant',
'person': [{'firstname': 'Florence',
'middlename': None,
'lastname': 'Fabricant',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/81cfafc4-f630-54bf-98a8-24a03114b5ea',
'word_count': 503,
'uri': 'nyt://article/81cfafc4-f630-54bf-98a8-24a03114b5ea'},
{'abstract': 'Next up from the founders of Diapers.com: Soap.com, an online drugstore.',
'web_url': 'https://bits.blogs.nytimes.com/2010/06/03/out-of-toothpaste-or-toilet-paper-buy-it-online/',
'snippet': 'Next up from the founders of Diapers.com: Soap.com, an online drugstore.',
'lead_paragraph': 'The founders of Diapers.com managed to start a company selling a commonplace product and turn it into a darling of the tech world. Now its founders are trying to do it again, with Soap.com.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Out of Toothpaste or Toilet Paper? Buy It Online',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-06-03T23:17:39+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/e1f1fbe6-9d94-5057-b474-1c36655621aa',
'word_count': 432,
'uri': 'nyt://article/e1f1fbe6-9d94-5057-b474-1c36655621aa'},
{'abstract': 'With his wife’s help, Jets left guard Matt Slauson is getting plenty of rest despite the birth of their first baby a week ago.',
'web_url': 'https://fifthdown.blogs.nytimes.com/2011/01/07/jets-slauson-first-time-father-sleeps-like-a-baby/',
'snippet': 'With his wife’s help, Jets left guard Matt Slauson is getting plenty of rest despite the birth of their first baby a week ago.',
'lead_paragraph': 'FLORHAM PARK, N.J. — For Jets left guard Matt Slauson, the less then glamorous life of new fatherhood should be here: picking up\xa0 baby food at the store on his way home, 2 a.m. feedings and plenty of diaper purchases and changes. Sprinkle in some playoff football, and Slauson ought to be yawning his way through practice and film study. Instead, he looks bright and fresh despite the birth of Montgomery James a week ago.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Jets’ Slauson, First-Time Father, Sleeps Like a Baby',
'kicker': 'The Fifth Down',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Football',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Playoff Games', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Slauson, Matt', 'rank': 3, 'major': 'N'}],
'pub_date': '2011-01-07T11:45:25+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'byline': {'original': 'By Kristian R. Dyer',
'person': [{'firstname': 'Kristian',
'middlename': 'R.',
'lastname': 'Dyer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/a40cf55f-b00c-5aff-918c-71553e914ff9',
'word_count': 439,
'uri': 'nyt://article/a40cf55f-b00c-5aff-918c-71553e914ff9'},
{'abstract': 'Reams of data, straight to your smartphone. Imagine being certain your baby needs a diaper change, and determining with 97 percent accuracy if your baby is crying!',
'web_url': 'https://parenting.blogs.nytimes.com/2014/12/12/the-unmonitored-baby-is-not-worth-having/',
'snippet': 'Reams of data, straight to your smartphone. Imagine being certain your baby needs a diaper change, and determining with 97 percent accuracy if your baby is crying!',
'lead_paragraph': 'In case the current crop of wired onesies isn’t enough:',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-articleLarge.jpg',
'height': 800,
'width': 600,
'legacy': {'xlarge': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 800},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-blog480.jpg',
'height': 640,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-blog427.jpg',
'height': 569,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-tmagArticle.jpg',
'height': 789,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-jumbo.jpg',
'height': 1024,
'width': 768,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-blog225.jpg',
'height': 300,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-master675.jpg',
'height': 900,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-master180.jpg',
'height': 240,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-popup.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-blog533.jpg',
'height': 711,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-tmagSF.jpg',
'height': 483,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-slide.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-superJumbo.jpg',
'height': 2048,
'width': 1536,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-master1050.jpg',
'height': 1400,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-master495.jpg',
'height': 660,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-master315.jpg',
'height': 420,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-articleInline.jpg',
'height': 253,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-hpSmall.jpg',
'height': 217,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-blogSmallInline.jpg',
'height': 201,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-mediumFlexible177.jpg',
'height': 236,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/12/us/motherlode-baby-o/motherlode-baby-o-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'The Unmonitored Baby Is Not Worth Having',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Wearable Computing',
'rank': 3,
'major': 'N'}],
'pub_date': '2014-12-12T15:15:33+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'U.S.',
'byline': {'original': 'By Devorah Blachor',
'person': [{'firstname': 'Devorah',
'middlename': None,
'lastname': 'Blachor',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e43d6c44-eaa5-5925-922e-e4c02c37fd57',
'word_count': 420,
'uri': 'nyt://article/e43d6c44-eaa5-5925-922e-e4c02c37fd57'},
{'abstract': 'It required two things that don’t come naturally to me: acting helpless and asking for help.',
'web_url': 'https://www.nytimes.com/2018/10/04/style/how-i-trained-my-husband-to-be-a-dad.html',
'snippet': 'It required two things that don’t come naturally to me: acting helpless and asking for help.',
'lead_paragraph': 'Nick was trying to cut a piece of squid with a butter knife in his right hand as he rocked our baby to sleep with his left while seated in a self-consciously hip tapas joint during a recent family vacation in Spain.',
'print_section': 'ST',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-articleLarge.jpg',
'height': 217,
'width': 600,
'legacy': {'xlarge': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 217},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-popup.jpg',
'height': 235,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-blog480.jpg',
'height': 174,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-blog533.jpg',
'height': 193,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-blog427.jpg',
'height': 155,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-tmagSF.jpg',
'height': 131,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-tmagArticle.jpg',
'height': 214,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-slide.jpg',
'height': 217,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-jumbo.jpg',
'height': 371,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-superJumbo.jpg',
'height': 741,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-blog225.jpg',
'height': 81,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-master1050.jpg',
'height': 380,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-master675.jpg',
'height': 244,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-master495.jpg',
'height': 179,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-master180.jpg',
'height': 65,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-master315.jpg',
'height': 114,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-master768.jpg',
'height': 278,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-horizontalMediumAt2X.jpg',
'height': 1386,
'width': 2082,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-threeByTwoLargeAt2X.jpg',
'height': 1388,
'width': 2085,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-threeByTwoSmallAt2X.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-articleInline.jpg',
'height': 69,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-hpSmall.jpg',
'height': 59,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-blogSmallInline.jpg',
'height': 55,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-mediumFlexible177.jpg',
'height': 64,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/07/style/07Rites-dadtraining-1/00Rites-dadtraining-1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How I Trained My Husband to Be a Dad',
'kicker': 'Rites of passage',
'content_kicker': None,
'print_headline': 'How I Trained My Husband to Be a Dad',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'}],
'pub_date': '2018-10-04T09:00:05+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'subsection_name': 'Self-Care',
'byline': {'original': 'By Jo Piazza',
'person': [{'firstname': 'Jo',
'middlename': None,
'lastname': 'Piazza',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6be8611f-5044-5ca9-9a79-add12dcb324a',
'word_count': 1052,
'uri': 'nyt://article/6be8611f-5044-5ca9-9a79-add12dcb324a'}],
[{'abstract': 'It’s starting to seem as if you can sell anything on a subscription basis. (Maybe even newspapers!)',
'web_url': 'https://boss.blogs.nytimes.com/2012/03/07/have-you-tried-selling-with-a-subscription-model/',
'snippet': 'It’s starting to seem as if you can sell anything on a subscription basis. (Maybe even newspapers!)',
'lead_paragraph': 'There’s nothing new about selling products on a subscription basis. But, in a story just published in The Times, Darren Dahl writes that companies are finding creative ways to use the Internet to sell products that have not traditionally been sold by subscription.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Have You Tried Selling With a Subscription Model?',
'kicker': 'You're the Boss',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Small Business',
'rank': 1,
'major': 'N'}],
'pub_date': '2012-03-07T18:17:08+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Entrepreneurship',
'byline': {'original': "By You're the Boss Editors",
'person': [{'firstname': None,
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4e0e941b-7b9e-5058-bf47-3fbcb83cfbff',
'word_count': 157,
'uri': 'nyt://article/4e0e941b-7b9e-5058-bf47-3fbcb83cfbff'},
{'abstract': 'Keeping kids active, entertained, and educated has been an enormous challenge over the past year. And although every parent deserves a medal (and a vacation) for parenting through a pandemic, what you might appreciate just as much this Prime Day are great deals on games, toys, equipment, and other kid-centric things that can help ensure...',
'web_url': 'https://www.nytimes.com/wirecutter/money/best-prime-day-deals-baby-kid-2021/',
'snippet': 'Keeping kids active, entertained, and educated has been an enormous challenge over the past year. And although every parent deserves a medal (and a vacation) for parenting through a pandemic, what you might appreciate just as much this Prime Day a...',
'lead_paragraph': 'Keeping kids active, entertained, and educated has been an enormous challenge over the past year. And although every parent deserves a medal (and a vacation) for parenting through a pandemic, what you might appreciate just as much this Prime Day are great deals on games, toys, equipment, and other kid-centric things that can help ensure...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2021/06/babyandkiddeals-triptych4-2048px-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2021/06/babyandkiddeals-triptych4-2048px-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2021/06/babyandkiddeals-triptych4-2048px-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2021/06/babyandkiddeals-triptych4-2048px-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Prime Day Deals for Parents of Newborns, Toddlers, Little Kids, and Big Kids',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2021-06-22T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/a5a7e219-45f5-52e4-b12b-3c2ea1e8315b',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/a5a7e219-45f5-52e4-b12b-3c2ea1e8315b'},
{'abstract': 'Twenty-one people were charged Tuesday after the Georgia Bureau of Investigation said it found widespread abuse of patients at a specialized care facility northeast of Atlanta.',
'web_url': 'https://www.nytimes.com/2013/07/03/us/georgia-21-charged-after-inquiry-finds-alzheimers-patients-were-abused.html',
'snippet': 'Twenty-one people were charged Tuesday after the Georgia Bureau of Investigation said it found widespread abuse of patients at a specialized care facility northeast of Atlanta.',
'lead_paragraph': 'Twenty-one people were charged Tuesday after the Georgia Bureau of Investigation said it found widespread abuse of patients at a specialized care facility northeast of Atlanta. The bureau said its review had found that employees at Alzheimer’s Care of Commerce had struck patients, delayed changing diapers and used bedsheets as restraining devices. The inquiry also uncovered that people with felony convictions were involved in patient care, a violation of state regulations. The authorities filed more than 70 charges against current and former facility employees. The center’s owner, Donna Wright, was among those charged. ',
'print_section': 'A',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Georgia: 21 Charged After Inquiry Finds Alzheimer’s Patients Were Abused',
'kicker': 'National Briefing | South',
'content_kicker': None,
'print_headline': 'Georgia: 21 Charged After Inquiry Finds Alzheimer’s Patients Were Abused',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Georgia',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': "Alzheimer's Disease",
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Atlanta (Ga)', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Elder Abuse', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'Abuse of the Disabled',
'rank': 9,
'major': 'N'}],
'pub_date': '2013-07-03T02:36:59+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Alan Blinder',
'person': [{'firstname': 'Alan',
'middlename': None,
'lastname': 'Blinder',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Brief',
'_id': 'nyt://article/7727ea88-e6d2-59ba-9db6-8ea35ee1096a',
'word_count': 93,
'uri': 'nyt://article/7727ea88-e6d2-59ba-9db6-8ea35ee1096a'},
{'abstract': 'They get paid in formula and diapers, and their work hours are flexible, in a program that connects people across generations and brightens lives.',
'web_url': 'https://www.nytimes.com/2022/09/01/world/asia/japan-nursing-home-babies.html',
'snippet': 'They get paid in formula and diapers, and their work hours are flexible, in a program that connects people across generations and brightens lives.',
'lead_paragraph': 'TOKYO — Cooing, giggling and the patter of tiny feet mix with the sound of walkers and wheelchairs at a nursing home in southern Japan. In this graying nation, one home has been recruiting an unusual class of workers to enliven its residents’ days.',
'print_section': 'A',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-superJumbo.jpg',
'height': 1280,
'width': 1920,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-mediumSquareAt3X.jpg',
'height': 1280,
'width': 1280,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-horizontalMediumAt2X.jpg',
'height': 1280,
'width': 1920,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-threeByTwoLargeAt2X.jpg',
'height': 1280,
'width': 1920,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/01japan-babies-promo-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/01/world/01japan-babies-promo/merlin_212235045_40869a9b-9d5a-4ec3-8465-cd810e4a3b15-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'In a Japanese Nursing Home, Some Workers Are Babies',
'kicker': None,
'content_kicker': None,
'print_headline': 'Babies Fit the Gig in Japan’s Nursing Homes',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Nursing Homes',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Fukuoka (Japan)',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Japan', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Elder Care', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Loneliness', 'rank': 7, 'major': 'N'}],
'pub_date': '2022-09-01T07:23:11+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Hikari Hida and John Yoon',
'person': [{'firstname': 'Hikari',
'middlename': None,
'lastname': 'Hida',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'John',
'middlename': None,
'lastname': 'Yoon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d595b1d7-a0c6-5c9d-8e9b-6884c5e01d70',
'word_count': 770,
'uri': 'nyt://article/d595b1d7-a0c6-5c9d-8e9b-6884c5e01d70'},
{'abstract': 'New airport vending machines from 3floz.com offer travelers beauty and wellness products in sizes approved by the T.S.A.',
'web_url': 'https://intransit.blogs.nytimes.com/2013/09/11/at-airports-beauty-products-made-to-travel/',
'snippet': 'New airport vending machines from 3floz.com offer travelers beauty and wellness products in sizes approved by the T.S.A.',
'lead_paragraph': '3floz.com, a New York City-based site founded in 2009 with the premise of offering high-end beauty and wellness products in T.S.A.-approved sizes, is now selling them in vending machines at airports.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/09/11/travel/11beauty/11beauty-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-articleLarge.jpg',
'height': 674,
'width': 600,
'legacy': {'xlarge': 'images/2013/09/11/travel/11beauty/11beauty-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 674},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-blog480.jpg',
'height': 539,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-blog427.jpg',
'height': 480,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-tmagArticle.jpg',
'height': 665,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-jumbo.jpg',
'height': 1024,
'width': 912,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-blog225.jpg',
'height': 253,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-master675.jpg',
'height': 758,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-master180.jpg',
'height': 202,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-popup.jpg',
'height': 500,
'width': 446,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-blog533.jpg',
'height': 599,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-tmagSF.jpg',
'height': 407,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-slide.jpg',
'height': 500,
'width': 446,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-superJumbo.jpg',
'height': 1603,
'width': 1427,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-master1050.jpg',
'height': 1180,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-master495.jpg',
'height': 556,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-articleInline.jpg',
'height': 213,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-hpSmall.jpg',
'height': 183,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-blogSmallInline.jpg',
'height': 170,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-mediumFlexible177.jpg',
'height': 199,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/09/11/travel/11beauty/11beauty-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/11/travel/11beauty/11beauty-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'At Airports, Beauty Products Made to Travel',
'kicker': 'In Transit',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Airports',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Cosmetics and Toiletries',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': "Burt's Bees", 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Transportation Security Administration',
'rank': 5,
'major': 'N'},
{'name': 'organizations', 'value': 'Yes To Inc', 'rank': 6, 'major': 'N'}],
'pub_date': '2013-09-11T16:25:58+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Travel',
'byline': {'original': 'By Shivani Vora',
'person': [{'firstname': 'Shivani',
'middlename': None,
'lastname': 'Vora',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2fce3ba9-2ed8-5ec2-bca8-4043d7483e3f',
'word_count': 146,
'uri': 'nyt://article/2fce3ba9-2ed8-5ec2-bca8-4043d7483e3f'},
{'abstract': 'A father pleaded guilty to endangering the welfare of a child after his two, young children were discovered on a Long Island Rail Road train around 4 a.m. last Saturday.',
'web_url': 'https://www.nytimes.com/2013/04/27/nyregion/father-gets-off-train-leaving-children-behind.html',
'snippet': 'A father pleaded guilty to endangering the welfare of a child after his two, young children were discovered on a Long Island Rail Road train around 4 a.m. last Saturday.',
'lead_paragraph': 'Around 4 a.m. last Saturday, aboard a commuter train sidling through Long Island, a faint whimpering began to fill the sixth car somewhere east of Wyandanch.',
'print_section': 'A',
'print_page': '18',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Father Gets Off L.I.R.R., Leaving Children Behind',
'kicker': None,
'content_kicker': None,
'print_headline': 'Father Gets Off L.I.R.R., Leaving Children Behind',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Child Abuse and Neglect',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Long Island Rail Road Co',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Decisions and Verdicts',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'}],
'pub_date': '2013-04-27T01:56:18+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Matt Flegenheimer',
'person': [{'firstname': 'Matt',
'middlename': None,
'lastname': 'Flegenheimer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a88b4743-2ffe-5967-8c67-cadabc4e9fa7',
'word_count': 489,
'uri': 'nyt://article/a88b4743-2ffe-5967-8c67-cadabc4e9fa7'},
{'abstract': 'People over 40 are happier with children than without.',
'web_url': 'https://parenting.blogs.nytimes.com/2011/04/08/children-make-older-parents-happy/',
'snippet': 'People over 40 are happier with children than without.',
'lead_paragraph': 'Not EVERY study concludes that parents are miserable.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Children Make Older Parents Happy',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-04-08T20:43:52+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/0dd0e87b-a92a-5bab-a33f-d5a766e7bc38',
'word_count': 205,
'uri': 'nyt://article/0dd0e87b-a92a-5bab-a33f-d5a766e7bc38'},
{'abstract': 'Hawk Cam 2012: There may be a baby hawk pecking out of its shell.',
'web_url': 'https://cityroom.blogs.nytimes.com/2012/04/09/looks-like-a-hawk-egg-is-hatching/',
'snippet': 'Hawk Cam 2012: There may be a baby hawk pecking out of its shell.',
'lead_paragraph': 'While we can’t count hawks until they’ve hatched, it sure looks as if there is a hole in one of the eggs in the Hawk Cam nest high outside the New York University president’s office high above Washington Square Park, the kind that is made by a baby hawk pecking its way to daylight. Folks on the chat room noticed it around 1:30 p.m. today — Day 34 after an egg was spotted in the nest and well into the expected hatch window. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Looks as if a Hawk Egg Is Hatching',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hawks (Birds)',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Washington Square Park (NYC)',
'rank': 2,
'major': 'N'}],
'pub_date': '2012-04-09T18:23:37+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By The New York Times',
'person': [],
'organization': 'The New York Times'},
'type_of_material': 'News',
'_id': 'nyt://article/d21ce632-b4c7-5e6f-bbc3-b8346b32fb74',
'word_count': 198,
'uri': 'nyt://article/d21ce632-b4c7-5e6f-bbc3-b8346b32fb74'},
{'abstract': 'No matter how old, brick speaks of the mason who laid it. And it comes in many styles.',
'web_url': 'https://www.nytimes.com/2013/03/10/realestate/a-brick-watchers-favorites.html',
'snippet': 'No matter how old, brick speaks of the mason who laid it. And it comes in many styles.',
'lead_paragraph': 'Stone leaves me cold. Yes, Connemara green marble can be luscious, and the fossils in Indiana limestone may be mesmerizing, but the setting of stone — massive hunks of rock, which must be derricked into place — removes all sense of handwork. A stone wall is the creation of machines. ',
'print_section': 'RE',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-hpLarge-v2.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-largeWidescreen573-v2.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-videoHpMedium-v2.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/realestate/10STREETS1_SPAN/10STREETS1_SPAN-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A Brick-Watcher’s Favorites',
'kicker': 'Streetscapes | Masonry',
'content_kicker': None,
'print_headline': 'A Brick-Watcher’s Favorites',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Real Estate and Housing (Residential)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Gray, Christopher', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Brick and Tile', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Historic Buildings and Sites',
'rank': 4,
'major': 'N'},
{'name': 'glocations',
'value': 'West End Avenue (Manhattan, NY)',
'rank': 5,
'major': 'N'},
{'name': 'glocations',
'value': 'Park Avenue (Manhattan, NY)',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'ARCHITECTURE', 'rank': 8, 'major': 'N'}],
'pub_date': '2013-03-08T01:02:41+0000',
'document_type': 'article',
'news_desk': 'RealEstate',
'section_name': 'Real Estate',
'byline': {'original': 'By Christopher Gray',
'person': [{'firstname': 'Christopher',
'middlename': None,
'lastname': 'Gray',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3e0e1325-62a7-5aae-a7b2-1fbab5c87dfe',
'word_count': 860,
'uri': 'nyt://article/3e0e1325-62a7-5aae-a7b2-1fbab5c87dfe'},
{'abstract': 'An iPhone may be a better videocamera than the Flip.',
'web_url': 'https://gadgetwise.blogs.nytimes.com/2010/03/25/flipping-for-an-iphone-camcorder/',
'snippet': 'An iPhone may be a better videocamera than the Flip.',
'lead_paragraph': 'Some online commentators have suggested giving your children a Flip recorder as a gift and letting them unleash their inner videographer.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Flipping for an ‘iPhone Camcorder’',
'kicker': 'Gadgetwise',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-03-25T20:54:21+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'subsection_name': 'Personal Tech',
'byline': {'original': 'By Bob Tedeschi',
'person': [{'firstname': 'Bob',
'middlename': None,
'lastname': 'Tedeschi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/0f685f09-c6f1-51bc-b52b-1b4ec1618bf9',
'word_count': 200,
'uri': 'nyt://article/0f685f09-c6f1-51bc-b52b-1b4ec1618bf9'}],
[{'abstract': 'A three-time medalist in 2006, the speedskater Chad Hedrick is back in the 5,000 meters, which he won in 2006; the 1,000; the 1,500; and the team pursuit.',
'web_url': 'https://vancouver2010.blogs.nytimes.com/2010/02/11/ones-to-know-chad-hedrick/',
'snippet': 'A three-time medalist in 2006, the speedskater Chad Hedrick is back in the 5,000 meters, which he won in 2006; the 1,000; the 1,500; and the team pursuit.',
'lead_paragraph': 'A look at some notable athletes who will take the stage at the Vancouver Games.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Ones to Know: Chad Hedrick',
'kicker': 'Vancouver 2010',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-02-12T03:00:42+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'subsection_name': 'Olympics',
'byline': {'original': 'By Karen Crouse',
'person': [{'firstname': 'Karen',
'middlename': None,
'lastname': 'Crouse',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/eb59d3c5-5172-5de2-80ff-6d88ea2856e7',
'word_count': 165,
'uri': 'nyt://article/eb59d3c5-5172-5de2-80ff-6d88ea2856e7'},
{'abstract': 'First comes the baby, and then all the whining starts about how impossible it all is.',
'web_url': 'https://www.nytimes.com/2014/02/16/opinion/sunday/douthat-parental-pity-party.html',
'snippet': 'First comes the baby, and then all the whining starts about how impossible it all is.',
'lead_paragraph': 'WHEN I became a father, I expected to change in all the predictable ways — to become more responsible and more exhausted, to lose contact with friends and lean more heavily on relatives, to grow steadily balder of head and softer of belly.',
'print_section': 'SR',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-articleLarge.jpg',
'height': 900,
'width': 600,
'legacy': {'xlarge': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 900},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-blog480.jpg',
'height': 720,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-blog427.jpg',
'height': 641,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-tmagArticle.jpg',
'height': 888,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-jumbo-v2.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-popup.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-blog533.jpg',
'height': 800,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-tmagSF.jpg',
'height': 543,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-slide.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-superJumbo.jpg',
'height': 2048,
'width': 1366,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-hpSmall.jpg',
'height': 245,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-blogSmallInline.jpg',
'height': 227,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/09/16/opinion/Douthat_New/Douthat_New-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Parental Pity Party',
'kicker': 'Op-Ed Columnist',
'content_kicker': None,
'print_headline': 'Parental Pity Party',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'All Joy and No Fun: The Paradox of Modern Parenthood (Book)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Social Conditions and Trends',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'Senior, Jennifer', 'rank': 6, 'major': 'N'}],
'pub_date': '2014-02-15T19:30:02+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By Ross Douthat',
'person': [{'firstname': 'Ross',
'middlename': None,
'lastname': 'Douthat',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/dc2390b6-71d1-5fde-8b5a-bdfe623c28c6',
'word_count': 825,
'uri': 'nyt://article/dc2390b6-71d1-5fde-8b5a-bdfe623c28c6'},
{'abstract': 'I found out that I had prostate cancer nearly two years ago — it ended up being an unexpectedly aggressive Stage 3 cancer — and in the time since then I’ve learned that there is a big difference between recuperation and recovery.',
'web_url': 'https://well.blogs.nytimes.com/2010/01/18/the-long-recovery-of-cancer/',
'snippet': 'I found out that I had prostate cancer nearly two years ago — it ended up being an unexpectedly aggressive Stage 3 cancer — and in the time since then I’ve learned that there is a big difference between recuperation and recovery.',
'lead_paragraph': 'In today’s Cases column in Science Times, Dana Jennings writes about the difference between recuperating from an illness and the full recovery that often eludes people with cancer. He writes:',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Long Recovery of Cancer',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-01-18T20:21:33+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Tara Parker-Pope',
'person': [{'firstname': 'Tara',
'middlename': None,
'lastname': 'Parker-Pope',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/7feda2c4-869e-5be1-862d-683a002f1381',
'word_count': 159,
'uri': 'nyt://article/7feda2c4-869e-5be1-862d-683a002f1381'},
{'abstract': 'Parents are rarely as enthusiastic about toilet training as they are about other childhood milestones, but it is met with fanfare in a Kimberly-Clark ad campaign.',
'web_url': 'https://www.nytimes.com/2013/01/04/business/huggies-pull-ups-ad-campaign-aims-to-celebrate-toilet-training.html',
'snippet': 'Parents are rarely as enthusiastic about toilet training as they are about other childhood milestones, but it is met with fanfare in a Kimberly-Clark ad campaign.',
'lead_paragraph': 'FOR parents, milestones worthy of commemoration in a young child’s life can include the loss of a first tooth or the first trip to the barbershop. Training a child to use the toilet, however, is often met with much less enthusiasm. ',
'print_section': 'B',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/01/04/business/Adco1/Adco1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-articleLarge.jpg',
'height': 307,
'width': 600,
'legacy': {'xlarge': 'images/2013/01/04/business/Adco1/Adco1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 307},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-blog480.jpg',
'height': 245,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-blog427.jpg',
'height': 218,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-tmagArticle.jpg',
'height': 303,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-jumbo.jpg',
'height': 523,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-popup.jpg',
'height': 332,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-blog533.jpg',
'height': 272,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-tmagSF.jpg',
'height': 185,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-slide.jpg',
'height': 307,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-superJumbo.jpg',
'height': 869,
'width': 1700,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-articleInline.jpg',
'height': 97,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-hpSmall.jpg',
'height': 83,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-blogSmallInline.jpg',
'height': 77,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/01/04/business/Adco1/Adco1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/04/business/Adco1/Adco1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Honoring the ‘First Flush’ With Parades and Pull-Ups',
'kicker': 'Advertising',
'content_kicker': None,
'print_headline': 'Honoring the ‘First Flush’ With Parades and Pull-Ups',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Vega, Tanzina', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Toilet Training', 'rank': 6, 'major': 'N'}],
'pub_date': '2013-01-04T01:19:27+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Tanzina Vega',
'person': [{'firstname': 'Tanzina',
'middlename': None,
'lastname': 'Vega',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e0503136-bb0a-5074-8056-6b571442de64',
'word_count': 889,
'uri': 'nyt://article/e0503136-bb0a-5074-8056-6b571442de64'},
{'abstract': 'Did “natural” parenting push women out of the work force and create the “mommy wars,” or is the conflict between career and motherhood mostly one we create for ourselves?',
'web_url': 'https://parenting.blogs.nytimes.com/2012/04/23/the-eternal-internal-mommy-wars/',
'snippet': 'Did “natural” parenting push women out of the work force and create the “mommy wars,” or is the conflict between career and motherhood mostly one we create for ourselves?',
'lead_paragraph': 'Wherein, in motherhood, lies “the conflict”?\xa0',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Eternal, Internal Mommy Wars',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Childhood',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': "Women's Rights", 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Work-Life Balance', 'rank': 6, 'major': 'N'},
{'name': 'persons',
'value': 'Badinter, Elisabeth',
'rank': 7,
'major': 'N'}],
'pub_date': '2012-04-23T15:59:58+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': "By Kj Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c6c134a5-69c3-502d-8b47-f0b2a5cecaf3',
'word_count': 887,
'uri': 'nyt://article/c6c134a5-69c3-502d-8b47-f0b2a5cecaf3'},
{'abstract': 'Test your knowledge of recent events.',
'web_url': 'https://www.nytimes.com/2011/08/14/opinion/sunday/wait-wait-dont-tell-me-quiz.html',
'snippet': 'Test your knowledge of recent events.',
'lead_paragraph': 'NPR’s “Wait Wait ... Don’t Tell Me!” is heard weekends on public radio stations across the country. (npr.org/waitwait)',
'print_section': 'SR',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-articleLarge.jpg',
'height': 348,
'width': 600,
'legacy': {'xlarge': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 348},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-blog480.jpg',
'height': 278,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-jumbo.jpg',
'height': 594,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-popup.jpg',
'height': 377,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-articleInline.jpg',
'height': 110,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-sfSpan.jpg',
'height': 229,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/06/26/sunday-review/26QUIZ/26QUIZ-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Wait Wait ... Don’t Tell Me',
'kicker': 'Quiz',
'content_kicker': None,
'print_headline': 'Wait Wait ... Don’t Tell Me',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'News and News Media',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-08-13T21:58:12+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/e2458e8a-093c-5b4d-8084-16f3f6088ec7',
'word_count': 475,
'uri': 'nyt://article/e2458e8a-093c-5b4d-8084-16f3f6088ec7'},
{'abstract': 'To celebrate the first birth of a baby behind the wheel of a Chevrolet Cobalt, Chevrolet announced it would be giving the family a year’s supply of diapers, two child safety seats and other baby goodies.',
'web_url': 'https://wheels.blogs.nytimes.com/2010/05/28/mom-says-giving-birth-while-driving-was-no-big-deal/',
'snippet': 'To celebrate the first birth of a baby behind the wheel of a Chevrolet Cobalt, Chevrolet announced it would be giving the family a year’s supply of diapers, two child safety seats and other baby goodies.',
'lead_paragraph': '“We were doing 70 on Highway 2 when Amanda’s water broke,” said Joseph Phillips, 33, of Bagley, Minn. “That wouldn’t have been a big deal if she hadn’t been driving.”',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Mom Says Giving Birth While Driving Was ‘No Big Deal’',
'kicker': 'Wheels',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-05-28T11:30:14+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Automobiles',
'byline': {'original': 'By Paul Stenquist',
'person': [{'firstname': 'Paul',
'middlename': None,
'lastname': 'Stenquist',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/5cb20990-82a5-5d61-bd63-35f07c73d451',
'word_count': 477,
'uri': 'nyt://article/5cb20990-82a5-5d61-bd63-35f07c73d451'},
{'abstract': 'Some additional items for the giant financial to-do list that new parents face when bringing home a new baby.',
'web_url': 'https://bucks.blogs.nytimes.com/2013/03/08/how-did-you-prepare-for-your-baby/',
'snippet': 'Some additional items for the giant financial to-do list that new parents face when bringing home a new baby.',
'lead_paragraph': 'Once you have figured out how to put your baby to sleep, and even if you have managed to get some sleep yourself, you’ll probably still be too exhausted to address the many ways your little one is likely to affect your financial life.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'How Did You Prepare for Your Baby?',
'kicker': 'Bucks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Personal Finances', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Wills and Estates', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-03-08T21:21:35+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Your Money',
'byline': {'original': 'By Tara Siegel Bernard',
'person': [{'firstname': 'Tara',
'middlename': 'Siegel',
'lastname': 'Bernard',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/674e026c-0a8b-5d67-8a85-5ab75c531845',
'word_count': 484,
'uri': 'nyt://article/674e026c-0a8b-5d67-8a85-5ab75c531845'},
{'abstract': 'The actor finally fulfills a childhood dream, sort of, by climbing into a spacesuit to play a tormented astronaut in “Lucy in the Sky.” And soon she’ll wield the hammer as female Thor.',
'web_url': 'https://www.nytimes.com/2019/10/04/movies/natalie-portman-lucy-in-the-sky.html',
'snippet': 'The actor finally fulfills a childhood dream, sort of, by climbing into a spacesuit to play a tormented astronaut in “Lucy in the Sky.” And soon she’ll wield the hammer as female Thor.',
'lead_paragraph': 'As a kid with a precocious mind for science — she made it to the Intel competition semifinals in high school, after all — Natalie Portman dreamed of becoming an astronaut. But acting eventually grounded her among less celestial stars.',
'print_section': 'AR',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-articleLarge.jpg',
'height': 777,
'width': 600,
'legacy': {'xlarge': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 777},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-popup.jpg',
'height': 500,
'width': 387,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-blog480.jpg',
'height': 622,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-blog533.jpg',
'height': 690,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-blog427.jpg',
'height': 553,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-tmagSF.jpg',
'height': 469,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-tmagArticle.jpg',
'height': 767,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-slide.jpg',
'height': 500,
'width': 387,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-jumbo.jpg',
'height': 1024,
'width': 791,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-superJumbo.jpg',
'height': 2048,
'width': 1582,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-blog225.jpg',
'height': 291,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-master1050.jpg',
'height': 1360,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-master675.jpg',
'height': 874,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-master495.jpg',
'height': 641,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-master180.jpg',
'height': 233,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-master315.jpg',
'height': 408,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-master768.jpg',
'height': 995,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-horizontalMediumAt2X.jpg',
'height': 1567,
'width': 2351,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-threeByTwoLargeAt2X-v2.jpg',
'height': 802,
'width': 1203,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-threeByTwoMediumAt2X-v2.jpg',
'height': 802,
'width': 1203,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-promo-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-articleInline.jpg',
'height': 246,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-hpSmall.jpg',
'height': 211,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-blogSmallInline.jpg',
'height': 196,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-mediumFlexible177.jpg',
'height': 229,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/06/arts/06snapshot-2-promo/06snapshot-2-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Natalie Portman Shoots for the Stars and Loses Her Mind',
'kicker': None,
'content_kicker': None,
'print_headline': 'Natalie Portman Keeps Shooting for the Stars',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Space and Astronomy',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Portman, Natalie', 'rank': 3, 'major': 'N'},
{'name': 'creative_works',
'value': 'Lucy in the Sky (Movie)',
'rank': 4,
'major': 'N'},
{'name': 'organizations', 'value': "Time's Up", 'rank': 5, 'major': 'N'},
{'name': 'persons',
'value': 'Nowak, Lisa Marie',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-10-04T14:00:08+0000',
'document_type': 'article',
'news_desk': 'Arts&Leisure',
'section_name': 'Movies',
'byline': {'original': 'By Kathryn Shattuck',
'person': [{'firstname': 'Kathryn',
'middlename': None,
'lastname': 'Shattuck',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/fc3cdf16-ab40-52fa-88fb-1a217cd47fc8',
'word_count': 1212,
'uri': 'nyt://article/fc3cdf16-ab40-52fa-88fb-1a217cd47fc8'},
{'abstract': 'Can a company this small go head-to-head with powerhouses like Macy’s, Nordstrom, Target, Babies “R” Us, and Diapers.com? It isn’t easy. “We are not scared of criticism,” said one of the owners. “We are scared that there might be something that we can do to improve, but we just don’t know about it.”',
'web_url': 'https://boss.blogs.nytimes.com/2011/12/13/a-small-retailer-tries-to-compete-with-the-big-boys-online/',
'snippet': 'Can a company this small go head-to-head with powerhouses like Macy’s, Nordstrom, Target, Babies “R” Us, and Diapers.com? It isn’t easy. “We are not scared of criticism,” said one of the owners. “We are scared that there might be something that we...',
'lead_paragraph': 'Little Dudes and Divas is a small business with some very big competition. Started seven years ago by Steve and Susan Karasanti, husband and wife, the company has three employees and sells clothes and accessories for infants and toddlers. Ninety percent of the sales come through the Web site, the rest through a newly opened brick-and-mortar store in Rockaway Park, N.Y., where the company is based.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Can a Small Retailer Compete Online With the Big Boys?',
'kicker': 'You're the Boss',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Computers and the Internet',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Customer Relations',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Small Business', 'rank': 5, 'major': 'N'}],
'pub_date': '2011-12-13T12:00:33+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Entrepreneurship',
'byline': {'original': 'By Gabriel Shaoolian',
'person': [{'firstname': 'Gabriel',
'middlename': None,
'lastname': 'Shaoolian',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2addf13b-084a-54d4-8287-7959102e3142',
'word_count': 773,
'uri': 'nyt://article/2addf13b-084a-54d4-8287-7959102e3142'}],
[{'abstract': 'The most important piece of advice: Be easy on yourself.',
'web_url': 'https://www.nytimes.com/article/breastfeeding-newborn.html',
'snippet': 'The most important piece of advice: Be easy on yourself.',
'lead_paragraph': 'This guide was originally published on May 5, 2019 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-articleLarge.jpg',
'height': 750,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 750},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-popup.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-blog480.jpg',
'height': 600,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-blog533.jpg',
'height': 666,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-blog427.jpg',
'height': 534,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-tmagSF.jpg',
'height': 453,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-tmagArticle.jpg',
'height': 740,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-slide.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-jumbo.jpg',
'height': 1024,
'width': 820,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-superJumbo.jpg',
'height': 2048,
'width': 1639,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-blog225.jpg',
'height': 281,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-master1050.jpg',
'height': 1313,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-master675.jpg',
'height': 844,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-master495.jpg',
'height': 619,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-master180.jpg',
'height': 225,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-master315.jpg',
'height': 394,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-master768.jpg',
'height': 960,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-horizontalMediumAt2X.jpg',
'height': 2189,
'width': 3282,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-threeByTwoLargeAt2X.jpg',
'height': 2188,
'width': 3282,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-articleInline.jpg',
'height': 238,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-hpSmall.jpg',
'height': 204,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-blogSmallInline.jpg',
'height': 189,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-mediumFlexible177.jpg',
'height': 221,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/07/parenting/07-parenting-breastfeeding/07-parenting-breastfeeding-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How to Breastfeed During the First 2 Weeks of Life',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'}],
'pub_date': '2020-04-18T21:15:36+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Guides',
'byline': {'original': 'By Jody Segrave-Daly',
'person': [{'firstname': 'Jody',
'middlename': None,
'lastname': 'Segrave-Daly',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/662ead83-448b-57d5-a050-cca150ef89ff',
'word_count': 2500,
'uri': 'nyt://article/662ead83-448b-57d5-a050-cca150ef89ff'},
{'abstract': 'Is this the beginning of a wonderful family tradition? Or a terrible idea?',
'web_url': 'https://www.nytimes.com/2020/07/16/magazine/judge-john-hodgman-on-wilderness-camping-with-a-9-month-old.html',
'snippet': 'Is this the beginning of a wonderful family tradition? Or a terrible idea?',
'lead_paragraph': 'Brian writes: My wife, Karen, and I are expecting. I want to bring our child to the Boundary Waters Canoe Area, a remote wilderness in Minnesota, where we go every year. Karen thinks that camping with a 9- to 12-month-old will be unenjoyable and dangerous. But how cool would it be for our child to be able to say they’ve been to the B.W.C.A. every year of their life?!',
'print_section': 'MM',
'print_page': '16',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-superJumbo.jpg',
'height': 2048,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-horizontalMediumAt2X.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-threeByTwoLargeAt2X.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/12/magazine/Mag-Hodgman-1/Mag-Hodgman-1-mobileMasterAt3x-v2.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Judge John Hodgman on Wilderness Camping With a 9-Month-Old',
'kicker': 'Judge John Hodgman',
'content_kicker': None,
'print_headline': 'Bonus Advice From Judge John Hodgman',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Childhood',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Wilderness Areas', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Road Trips', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Comedy and Humor', 'rank': 5, 'major': 'N'}],
'pub_date': '2020-07-16T09:00:01+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Judge John Hodgman',
'person': [{'firstname': 'Judge',
'middlename': 'John',
'lastname': 'Hodgman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d68d1c48-eed0-5998-9c2d-b1bb8cc60cf1',
'word_count': 163,
'uri': 'nyt://article/d68d1c48-eed0-5998-9c2d-b1bb8cc60cf1'},
{'abstract': 'A clean litter box is essential to the well-being of your cat (and your nostrils). If the box is constantly full, your pet might avoid nature’s call as long as possible, which can result in serious health problems. Your cat may also be inclined to take their business elsewhere, which is stressful for everyone. Scooping...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/litter-genie-plus-review/',
'snippet': 'A clean litter box is essential to the well-being of your cat (and your nostrils). If the box is constantly full, your pet might avoid nature’s call as long as possible, which can result in serious health problems. Your cat may also be inclined to...',
'lead_paragraph': 'A clean litter box is essential to the well-being of your cat (and your nostrils). If the box is constantly full, your pet might avoid nature’s call as long as possible, which can result in serious health problems. Your cat may also be inclined to take their business elsewhere, which is stressful for everyone. Scooping...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/11/littergenieplusode-2048px-4047-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/11/littergenieplusode-2048px-4047-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/11/littergenieplusode-2048px-4047-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/11/littergenieplusode-2048px-4047-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'We Love the Litter Genie. But We Have Three Wishes.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2023-03-29T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/15be9933-e516-5f9a-a875-edfc191cfda0',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/15be9933-e516-5f9a-a875-edfc191cfda0'},
{'abstract': 'Choose Love, a New York store, sells necessities that will be sent to displaced people around the world.',
'web_url': 'https://www.nytimes.com/2018/11/30/business/gifts-refugees-new-york.html',
'snippet': 'Choose Love, a New York store, sells necessities that will be sent to displaced people around the world.',
'lead_paragraph': 'Holiday customers shopping at a pop-up store in Manhattan this week left without baubles or packages to give to their family and friends. Instead, they bought gifts that would be sent to refugees in faraway camps — sleeping bags, blankets, solar lamps and onesies.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-popup.jpg',
'height': 432,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-jumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-master495.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-master768.jpg',
'height': 511,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-horizontalMediumAt2X.jpg',
'height': 2994,
'width': 4491,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-threeByTwoLargeAt2X.jpg',
'height': 2994,
'width': 4491,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/30/business/30xp-store-2/merlin_147487548_11c393c1-3161-4926-8d73-e57f598913d1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Sleeping Bags and Solar Lamps: Pop-Up Shop Lets You Buy Holiday Gifts for Refugees',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Pop-Up Stores and Restaurants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Refugees and Displaced Persons',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Christmas', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Choose Love Inc',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Help Refugees Ltd',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 7, 'major': 'N'}],
'pub_date': '2018-11-30T10:00:33+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'Business Day',
'byline': {'original': 'By Laura M. Holson',
'person': [{'firstname': 'Laura',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8cb767f4-4a9b-5944-8943-5fd63bc40365',
'word_count': 510,
'uri': 'nyt://article/8cb767f4-4a9b-5944-8943-5fd63bc40365'},
{'abstract': 'Protesters displayed the balloon of a giant baby Donald Trump during the president’s visit to a football game in Alabama.',
'web_url': 'https://www.nytimes.com/2019/11/10/us/politics/baby-trump-stabbed-alabama.html',
'snippet': 'Protesters displayed the balloon of a giant baby Donald Trump during the president’s visit to a football game in Alabama.',
'lead_paragraph': 'The authorities arrested a man they said had slashed a giant balloon of a baby Donald Trump that was on display to protest the president’s visit to a football game in Alabama on Saturday.',
'print_section': 'A',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-articleLarge.jpg',
'height': 434,
'width': 600,
'legacy': {'xlarge': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 434},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-popup.jpg',
'height': 470,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-blog480.jpg',
'height': 347,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-blog533.jpg',
'height': 385,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-blog427.jpg',
'height': 309,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-tmagSF.jpg',
'height': 262,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-tmagArticle.jpg',
'height': 428,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-slide.jpg',
'height': 434,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-jumbo.jpg',
'height': 740,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-superJumbo.jpg',
'height': 1446,
'width': 2000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-blog225.jpg',
'height': 163,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-master1050.jpg',
'height': 759,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-master675.jpg',
'height': 488,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-master495.jpg',
'height': 358,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-master180.jpg',
'height': 130,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-master315.jpg',
'height': 228,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-master768.jpg',
'height': 555,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-horizontalMediumAt2X.jpg',
'height': 1332,
'width': 2000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-threeByTwoLargeAt2X.jpg',
'height': 1332,
'width': 2000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-articleInline.jpg',
'height': 137,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-hpSmall.jpg',
'height': 118,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-blogSmallInline.jpg',
'height': 109,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mediumFlexible177.jpg',
'height': 128,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/multimedia/10xp-trumpballoon1/10xp-trumpballoon1-mobileMasterAt3x.jpg',
'height': 1301,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Man Charged in Slashing of ‘Baby Trump’ Balloon, Police Say',
'kicker': None,
'content_kicker': None,
'print_headline': 'Man Charged in ‘Baby Trump’ Slashing',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'University of Alabama',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Hutchinson, Hoyt', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Demonstrations, Protests and Riots',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 5,
'major': 'N'},
{'name': 'glocations',
'value': 'Tuscaloosa (Ala)',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Balloons (Toys)', 'rank': 8, 'major': 'N'}],
'pub_date': '2019-11-10T16:03:49+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Johnny Diaz',
'person': [{'firstname': 'Johnny',
'middlename': None,
'lastname': 'Diaz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bfab9aa5-731b-5998-8f6f-6207ee3a0a14',
'word_count': 456,
'uri': 'nyt://article/bfab9aa5-731b-5998-8f6f-6207ee3a0a14'},
{'abstract': 'A home health aide for a 77-year-old man serves as social worker, diaper changer, dietitian, day planner, warden and more — all at dismal wages.',
'web_url': 'https://www.nytimes.com/2019/09/02/nyregion/home-health-aide.html',
'snippet': 'A home health aide for a 77-year-old man serves as social worker, diaper changer, dietitian, day planner, warden and more — all at dismal wages.',
'lead_paragraph': 'STAMFORD, Conn. — Tuesday night was rough. A sharp scent drifted into Marjorie Salmon’s dream world at 4 a.m. She was still trying to rouse herself when its source, her 77-year-old client, pounded on her bedroom door, yelling that he wanted to go home.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-horizontalMediumAt2X.jpg',
'height': 1973,
'width': 2960,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-threeByTwoLargeAt2X-v2.jpg',
'height': 1840,
'width': 2759,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/02homehealthaide6-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/02/nyregion/02homehealthaide6/homehealthaide1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'On the Job, 24 Hours a Day, 27 Days a Month',
'kicker': None,
'content_kicker': None,
'print_headline': 'On Duty Around the Clock, 27 Days a Month',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Home Health Care',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Labor and Jobs', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Wages and Salaries',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': "Alzheimer's Disease",
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Connecticut', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 6, 'major': 'N'},
{'name': 'glocations',
'value': 'Stamford (Conn)',
'rank': 7,
'major': 'N'}],
'pub_date': '2019-09-02T07:00:10+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Andy Newman',
'person': [{'firstname': 'Andy',
'middlename': None,
'lastname': 'Newman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/09cb37b7-b026-5360-9ce1-ccb70a7344e7',
'word_count': 3206,
'uri': 'nyt://article/09cb37b7-b026-5360-9ce1-ccb70a7344e7'},
{'abstract': 'The designer unveils a line of black-and-gold strollers, diaper bags and car seats manufactured by the baby-goods specialist Cybex.',
'web_url': 'https://www.nytimes.com/2015/12/13/fashion/jeremy-scott-adds-fashion-sparkle-to-baby-strollers.html',
'snippet': 'The designer unveils a line of black-and-gold strollers, diaper bags and car seats manufactured by the baby-goods specialist Cybex.',
'lead_paragraph': 'On a brisk night in Milan last month, the chic concept store 10 Corso Como was packed with Italian fashion journalists and socialites young and old.',
'print_section': 'ST',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-articleLarge.jpg',
'height': 450,
'width': 600,
'legacy': {'xlarge': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 450},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-blog427.jpg',
'height': 320,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-tmagArticle.jpg',
'height': 444,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-jumbo.jpg',
'height': 768,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-blog225.jpg',
'height': 169,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-master675.jpg',
'height': 507,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-master180.jpg',
'height': 135,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-master768.jpg',
'height': 576,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-popup.jpg',
'height': 488,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-blog533.jpg',
'height': 400,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-tmagSF.jpg',
'height': 272,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-slide.jpg',
'height': 450,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-superJumbo.jpg',
'height': 1537,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-master1050.jpg',
'height': 788,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-master495.jpg',
'height': 371,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-master315.jpg',
'height': 236,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-articleInline.jpg',
'height': 143,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-hpSmall.jpg',
'height': 122,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-blogSmallInline.jpg',
'height': 113,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/12/13/fashion/13STROLLERS-WEB/13STROLLERS-WEB-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Jeremy Scott Adds Fashion Sparkle to Baby Strollers',
'kicker': None,
'content_kicker': None,
'print_headline': 'Never Too Early to Show Off Your Style',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Baby Carriages, Strollers and Carriers',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Child Car Seats', 'rank': 2, 'major': 'N'},
{'name': 'persons',
'value': 'Scott, Jeremy (1974- )',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Moschino SpA',
'rank': 5,
'major': 'N'}],
'pub_date': '2015-12-11T21:58:09+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Gisela Williams',
'person': [{'firstname': 'Gisela',
'middlename': None,
'lastname': 'Williams',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2f18b408-8502-5e6e-a0f2-3c88b945c94e',
'word_count': 492,
'uri': 'nyt://article/2f18b408-8502-5e6e-a0f2-3c88b945c94e'},
{'abstract': 'In their home’s safe room, Sarit Kurtzman, her husband and their 14-month-old daughter waited out the attack.',
'web_url': 'https://www.nytimes.com/2023/10/09/world/middleeast/israeli-family-kibbutz-attack.html',
'snippet': 'In their home’s safe room, Sarit Kurtzman, her husband and their 14-month-old daughter waited out the attack.',
'lead_paragraph': 'When Sarit Kurtzman heard rocket sirens early Saturday morning, she grabbed her 14-month-old daughter, Zohar, and quickly made her way with her husband, Yonatan, to the safe room in their home in the kibbutz Alumim in southern Israel.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-articleLarge.jpg',
'height': 900,
'width': 600,
'legacy': {'xlarge': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 900},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-popup.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-blog480.jpg',
'height': 720,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-blog533.jpg',
'height': 800,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-blog427.jpg',
'height': 641,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-tmagSF.jpg',
'height': 543,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-tmagArticle.jpg',
'height': 888,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-slide.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-jumbo.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-superJumbo.jpg',
'height': 1620,
'width': 1080,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-blog225.jpg',
'height': 338,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-master1050.jpg',
'height': 1575,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-master675.jpg',
'height': 1013,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-master495.jpg',
'height': 743,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-master180.jpg',
'height': 270,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-master315.jpg',
'height': 473,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-master768.jpg',
'height': 1152,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumSquareAt3X.jpg',
'height': 1080,
'width': 1080,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-horizontalMediumAt2X.jpg',
'height': 720,
'width': 1080,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-threeByTwoLargeAt2X.jpg',
'height': 720,
'width': 1080,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-threeByTwoMediumAt2X.jpg',
'height': 720,
'width': 1080,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-hpSmall.jpg',
'height': 245,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-blogSmallInline.jpg',
'height': 227,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mediumFlexible177.jpg',
'height': 266,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-videoSixteenByNineJumbo1600.jpg',
'height': 608,
'width': 1080,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/10/09/world/09israel-gaza-sheltering-witness/09israel-gaza-sheltering-witness-mobileMasterAt3x.jpg',
'height': 1620,
'width': 1080,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'For 26 Hours, One Family Took Shelter as Hamas Attackers Overran Their Kibbutz',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Kibbutz Movement',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Israel-Gaza War (2023- )',
'rank': 2,
'major': 'N'},
{'name': 'organizations', 'value': 'Hamas', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Palestinians', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Israel', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Gaza Strip', 'rank': 6, 'major': 'N'}],
'pub_date': '2023-10-09T20:20:07+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Middle East',
'byline': {'original': 'By Nadav Gavrielov',
'person': [{'firstname': 'Nadav',
'middlename': None,
'lastname': 'Gavrielov',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f9f73957-33a6-55ea-8424-4218824c1901',
'word_count': 521,
'uri': 'nyt://article/f9f73957-33a6-55ea-8424-4218824c1901'},
{'abstract': 'Fashion week comes to a conclusion, with 300 collections shown over eight days.',
'web_url': 'https://runway.blogs.nytimes.com/2010/09/16/fashion-week-winds-down/',
'snippet': 'Fashion week comes to a conclusion, with 300 collections shown over eight days.',
'lead_paragraph': 'Well, this is it, the last show of New York Fashion Week: Gwen Stefani’s L.A.M.B collection shown at Lincoln Center. It was probably scheduled that way just so that newspapers and bloggers could publish the headline, “Fashion Week Goes Out With a L.A.M.B.”',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Fashion Week Winds Down',
'kicker': 'On the Runway',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-09-17T01:28:52+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Eric Wilson',
'person': [{'firstname': 'Eric',
'middlename': None,
'lastname': 'Wilson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/cbe3b9bd-e18a-5617-b73c-3248404f88fe',
'word_count': 202,
'uri': 'nyt://article/cbe3b9bd-e18a-5617-b73c-3248404f88fe'},
{'abstract': 'Web hosts remove “offensive” information and more, promptly, study finds.',
'web_url': 'https://india.blogs.nytimes.com/2011/12/07/chilling-impact-of-indias-april-internet-rules/',
'snippet': 'Web hosts remove “offensive” information and more, promptly, study finds.',
'lead_paragraph': 'Kapil Sibal’s demand that Internet companies self-censor users’ content is just the latest move by the Indian government to restrict information on Facebook and other social media Web sites.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': '‘Chilling’ Impact of India’s April Internet Rules',
'kicker': 'India Ink',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Censorship',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Facebook Inc',
'rank': 2,
'major': 'N'},
{'name': 'organizations', 'value': 'Yahoo! Inc', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'India', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-12-07T09:39:24+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Heather Timmons',
'person': [{'firstname': 'Heather',
'middlename': None,
'lastname': 'Timmons',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6b272682-22ca-518e-8aab-36958b273429',
'word_count': 534,
'uri': 'nyt://article/6b272682-22ca-518e-8aab-36958b273429'}],
[{'abstract': 'Joy for young readers, consternation for grown-ups.',
'web_url': 'https://artsbeat.blogs.nytimes.com/2010/03/18/bathroom-humor-fans-rejoice-a-captain-underpants-spin-off/',
'snippet': 'Joy for young readers, consternation for grown-ups.',
'lead_paragraph': 'To the joy of millions of young readers and the consternation of untold numbers of foes of the “poop fiction” genre, a spinoff of the Captain Underpants series will be released in August, Scholastic announced on Thursday.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Bathroom Humor Fans Rejoice: A Captain Underpants Spin-Off',
'kicker': 'ArtsBeat',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-03-18T16:34:43+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'byline': {'original': 'By Felicia R. Lee',
'person': [{'firstname': 'Felicia',
'middlename': 'R.',
'lastname': 'Lee',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/249710b1-3b94-5a80-b5cb-c4c7aa9751a4',
'word_count': 218,
'uri': 'nyt://article/249710b1-3b94-5a80-b5cb-c4c7aa9751a4'},
{'abstract': 'For people with disabilities and their families, the battle for accessible toilet facilities has been going on for decades.',
'web_url': 'https://well.blogs.nytimes.com/2016/05/25/the-other-bathroom-wars/',
'snippet': 'For people with disabilities and their families, the battle for accessible toilet facilities has been going on for decades.',
'lead_paragraph': 'Jana Serge remembers her father pushing her wheelchair into a men’s room in the late 1970s. “Close your eyes,” he would say, as he quickly wheeled her toward the stalls.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/05/24/health/well_toilet/well_toilet-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2016/05/24/health/well_toilet/well_toilet-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/05/24/health/well_toilet/well_toilet-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/24/health/well_toilet/well_toilet-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'The Other Bathroom Wars',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Disabilities', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Intellectual Disabilities',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Transgender and Transsexuals',
'rank': 6,
'major': 'N'}],
'pub_date': '2016-05-25T09:45:28+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': "By Kj Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/974e2861-8bc5-578d-833e-c89e315f4acd',
'word_count': 868,
'uri': 'nyt://article/974e2861-8bc5-578d-833e-c89e315f4acd'},
{'abstract': 'Find out how to help those affected by the devastating flooding in Texas.',
'web_url': 'https://www.nytimes.com/2017/08/28/us/donate-harvey-charities-scams.html',
'snippet': 'Find out how to help those affected by the devastating flooding in Texas.',
'lead_paragraph': ' This article was updated on Sept. 6. ',
'print_section': 'A',
'print_page': '16',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/08/28/us/29xp-charity/29xp-charity-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/08/28/us/29xp-charity/29xp-charity-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/08/28/us/29xp-charity/29xp-charity-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/28/us/29xp-charity/29xp-charity-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'}],
'headline': {'main': 'Where to Donate to Harvey Victims',
'kicker': None,
'content_kicker': None,
'print_headline': 'How You Can Donate, And Avoid A Scam',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hurricane Harvey (2017)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Humanitarian Aid', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Frauds and Swindling',
'rank': 3,
'major': 'N'}],
'pub_date': '2017-08-28T21:59:17+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Christina Caron',
'person': [{'firstname': 'Christina',
'middlename': None,
'lastname': 'Caron',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/854fc3c8-2dad-5b4e-ade3-3d0f233720ce',
'word_count': 890,
'uri': 'nyt://article/854fc3c8-2dad-5b4e-ade3-3d0f233720ce'},
{'abstract': 'Two rap videos that capture the swagger and doubt of parenting.',
'web_url': 'https://parenting.blogs.nytimes.com/2010/08/06/parent-rap/',
'snippet': 'Two rap videos that capture the swagger and doubt of parenting.',
'lead_paragraph': 'I am off to BlogHer this weekend — a gathering of thousands of female bloggers, many of whom write about parenting, and all of whom are using new technology to share the realities of their lives.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Parent Rap',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-08-06T20:00:13+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/05e51d4f-4750-5b3d-9f76-726517494728',
'word_count': 241,
'uri': 'nyt://article/05e51d4f-4750-5b3d-9f76-726517494728'},
{'abstract': 'A subset of American babies fall behind with their first bottle.',
'web_url': 'https://kristof.blogs.nytimes.com/2016/06/15/the-breast-milk-gap/',
'snippet': 'A subset of American babies fall behind with their first bottle.',
'lead_paragraph': '',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/15/opinion/15kristof_blog/15kristof_blog-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'The Breast Milk Gap',
'kicker': 'Nicholas Kristof',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Baby Foods',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Diet and Nutrition',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Infant Formulas', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Milk', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Nursing and Nurses',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 8,
'major': 'N'},
{'name': 'organizations',
'value': 'Gates, Bill and Melinda, Foundation',
'rank': 9,
'major': 'N'},
{'name': 'organizations',
'value': 'La Leche League',
'rank': 10,
'major': 'N'},
{'name': 'organizations',
'value': 'Upper Breast Side',
'rank': 11,
'major': 'N'},
{'name': 'organizations',
'value': 'Yummy Mummy (Manhattan, NY, Retail Store)',
'rank': 12,
'major': 'N'},
{'name': 'glocations', 'value': 'Burundi', 'rank': 13, 'major': 'N'},
{'name': 'glocations',
'value': 'Central African Republic',
'rank': 14,
'major': 'N'},
{'name': 'glocations', 'value': 'Malawi', 'rank': 15, 'major': 'N'},
{'name': 'glocations', 'value': 'Niger', 'rank': 16, 'major': 'N'},
{'name': 'glocations', 'value': 'Oklahoma', 'rank': 17, 'major': 'N'}],
'pub_date': '2016-06-15T16:36:50+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Cassidy McDonald',
'person': [{'firstname': 'Cassidy',
'middlename': None,
'lastname': 'McDonald',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/39287e0a-3f1b-5c2a-ae75-4cdb358c84f8',
'word_count': 803,
'uri': 'nyt://article/39287e0a-3f1b-5c2a-ae75-4cdb358c84f8'},
{'abstract': 'Researchers are looking at the impact that individuals’ actions can have on reducing carbon emissions — and the best ways to get people to adopt them.',
'web_url': 'https://www.nytimes.com/2024/09/25/climate/carbon-reduction-strategies.html',
'snippet': 'Researchers are looking at the impact that individuals’ actions can have on reducing carbon emissions — and the best ways to get people to adopt them.',
'lead_paragraph': 'Make more beef-free meals. Compost food scraps. Replace a natural gas stove with an electric one.',
'print_section': 'F',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-horizontalMediumAt2X.jpg',
'height': 2001,
'width': 3001,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-threeByTwoLargeAt2X.jpg',
'height': 2001,
'width': 3001,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/09/25/multimedia/25sp-cli-mind-01-vpqz/25sp-cli-mind-01-vpqz-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'What if Everyone Did Something to Slow Climate Change?',
'kicker': None,
'content_kicker': None,
'print_headline': 'Getting People to Pitch In',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Greenhouse Gas Emissions',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Sustainable Living',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Global Warming', 'rank': 3, 'major': 'N'}],
'pub_date': '2024-09-25T05:30:22+0000',
'document_type': 'article',
'news_desk': 'Climate',
'section_name': 'Climate',
'byline': {'original': 'By Alina Tugend',
'person': [{'firstname': 'Alina',
'middlename': None,
'lastname': 'Tugend',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/dee008c2-bc01-5af3-b346-83242e726bff',
'word_count': 1289,
'uri': 'nyt://article/dee008c2-bc01-5af3-b346-83242e726bff'},
{'abstract': 'Circumcision probably won’t impact your son’s health, research shows, but a range of cultural and social factors deserve your consideration.',
'web_url': 'https://www.nytimes.com/2020/04/17/parenting/guides/circumcision-baby-boy.html',
'snippet': 'Circumcision probably won’t impact your son’s health, research shows, but a range of cultural and social factors deserve your consideration.',
'lead_paragraph': 'This guide was originally published on July 12, 2019 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-superJumbo.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-threeByTwoLargeAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/c210916db5d04b9596b90db8340cb2d7-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/multimedia/parenting-circumcision/parenting-circumcision-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Should You Circumcise Your Baby Boy?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Circumcision',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'}],
'pub_date': '2020-04-18T01:53:19+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Guides',
'byline': {'original': 'By Susan Reslewic Keatley',
'person': [{'firstname': 'Susan',
'middlename': 'Reslewic',
'lastname': 'Keatley',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/52c1b9bb-6dad-5ff7-ad3b-3f849c5d2a9c',
'word_count': 1724,
'uri': 'nyt://article/52c1b9bb-6dad-5ff7-ad3b-3f849c5d2a9c'},
{'abstract': 'Damon Gulczynski presents a classically styled Friday puzzle.',
'web_url': 'https://www.nytimes.com/2018/08/09/crosswords/daily-puzzle-2018-08-10.html',
'snippet': 'Damon Gulczynski presents a classically styled Friday puzzle.',
'lead_paragraph': 'FRIDAY PUZZLE — There’s absolutely nothing wrong with bells and whistles, but it’s nice to take a break from the flash and work on something stable and buttoned up. You won’t find much ribaldry in this Damon Gulczynski grid, but there’s enough interesting cluing to make the game worthwhile. ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-articleLarge.jpg',
'height': 377,
'width': 600,
'legacy': {'xlarge': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 377},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-popup.jpg',
'height': 409,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-blog480.jpg',
'height': 302,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-blog533.jpg',
'height': 335,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-blog427.jpg',
'height': 268,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-tmagSF.jpg',
'height': 228,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-tmagArticle.jpg',
'height': 372,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-slide.jpg',
'height': 377,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-jumbo.jpg',
'height': 644,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-superJumbo.jpg',
'height': 1288,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-blog225.jpg',
'height': 141,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-master1050.jpg',
'height': 660,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-master675.jpg',
'height': 424,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-master495.jpg',
'height': 311,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-master180.jpg',
'height': 113,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-master315.jpg',
'height': 198,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-master768.jpg',
'height': 483,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-horizontalMediumAt2X.jpg',
'height': 1481,
'width': 2220,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-threeByTwoLargeAt2X.jpg',
'height': 1481,
'width': 2220,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-articleInline.jpg',
'height': 119,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-hpSmall.jpg',
'height': 102,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-blogSmallInline.jpg',
'height': 95,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-mediumFlexible177.jpg',
'height': 111,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/10/crosswords/10wordplay-renoir/10wordplay-renoir-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Begin Writing',
'kicker': 'DAILY CROSSWORD COLUMN',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Crossword Puzzles',
'rank': 1,
'major': 'N'}],
'pub_date': '2018-08-10T02:00:01+0000',
'document_type': 'article',
'news_desk': 'Games',
'section_name': 'Crosswords & Games',
'byline': {'original': 'By Caitlin Lovinger',
'person': [{'firstname': 'Caitlin',
'middlename': None,
'lastname': 'Lovinger',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2a5b417d-eb68-5c70-ba45-d2fcb9c115b5',
'word_count': 607,
'uri': 'nyt://article/2a5b417d-eb68-5c70-ba45-d2fcb9c115b5'},
{'abstract': 'Moms-to-be can turn to the always-growing market of cosmetics that promise to minimize the woes of pregnancy. Herein, some of the newest.',
'web_url': 'https://www.nytimes.com/2013/01/03/fashion/beauty-spots.html',
'snippet': 'Moms-to-be can turn to the always-growing market of cosmetics that promise to minimize the woes of pregnancy. Herein, some of the newest.',
'lead_paragraph': 'THE many aesthetic benefits of pregnancy — thick, shiny hair; an enhanced bustline; that glow — are sometimes followed by glaring stretch marks, sagging skin and the onset of acne. But moms-to-be can turn to the always-growing market of cosmetics that promise to minimize these woes. Herein, some of the newest. ',
'print_section': 'E',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-articleLarge-v2.jpg',
'height': 309,
'width': 600,
'legacy': {'xlarge': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 309},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-blog480-v2.jpg',
'height': 248,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-blog427.jpg',
'height': 220,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-tmagArticle.jpg',
'height': 305,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-jumbo-v2.jpg',
'height': 528,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-popup.jpg',
'height': 335,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-blog533.jpg',
'height': 275,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-tmagSF.jpg',
'height': 187,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-slide.jpg',
'height': 309,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-superJumbo-v2.jpg',
'height': 1056,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-articleInline.jpg',
'height': 98,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-hpSmall.jpg',
'height': 84,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-blogSmallInline.jpg',
'height': 78,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-sfSpan-v2.jpg',
'height': 223,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/03/fashion/03SPOTB_SPAN/03SPOTB_SPAN-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Beauty Spots',
'kicker': None,
'content_kicker': None,
'print_headline': 'Beauty Spots',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Skin', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Cosmetics and Toiletries',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': 'Clarins SA', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Skinceuticals',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Mama Mio Ltd',
'rank': 6,
'major': 'N'}],
'pub_date': '2013-01-02T21:51:12+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Shivani Vora',
'person': [{'firstname': 'Shivani',
'middlename': None,
'lastname': 'Vora',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/81f0a051-4300-5d14-9c12-8dd63d6327c9',
'word_count': 198,
'uri': 'nyt://article/81f0a051-4300-5d14-9c12-8dd63d6327c9'},
{'abstract': 'A Hyatt executive meets a woman on a flight who is moving her family to London for work and shares her own story of a similar experience.',
'web_url': 'https://www.nytimes.com/2014/09/23/business/during-the-bustle-of-travel-moments-of-kinship.html',
'snippet': 'A Hyatt executive meets a woman on a flight who is moving her family to London for work and shares her own story of a similar experience.',
'lead_paragraph': 'I GREW up in California, and nearly every year I would fly across the county to visit my grandparents, who lived in Washington and Chicago.',
'print_section': 'B',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/09/23/business/FLIER/FLIER-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/09/23/business/FLIER/FLIER-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-superJumbo.jpg',
'height': 1206,
'width': 1810,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/09/23/business/FLIER/FLIER-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/23/business/FLIER/FLIER-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'During the Bustle of Travel, Moments of Kinship',
'kicker': None,
'content_kicker': None,
'print_headline': 'During the Bustle of Travel, Moments of Kinship',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Hyatt Hotels Corp',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Business Travel', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 3,
'major': 'N'},
{'name': 'persons',
'value': 'Ray, Katherine Melchior',
'rank': 4,
'major': 'N'}],
'pub_date': '2014-09-22T21:03:14+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Katherine Melchior Ray',
'person': [{'firstname': 'Katherine',
'middlename': 'Melchior',
'lastname': 'Ray',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c2e56dd4-525b-5d34-8883-194727d45fc1',
'word_count': 591,
'uri': 'nyt://article/c2e56dd4-525b-5d34-8883-194727d45fc1'}],
[{'abstract': 'A small study suggests that the stress of living in a neonatal intensive care unit affected the brain development of extremely premature infants.',
'web_url': 'https://www.nytimes.com/2011/10/11/health/research/11risks.html',
'snippet': 'A small study suggests that the stress of living in a neonatal intensive care unit affected the brain development of extremely premature infants.',
'lead_paragraph': 'The stress of living in a neonatal intensive care unit results in decreased brain size and abnormal neurological findings for very preterm babies, a small study suggests, and the more the stress, the greater the effect.',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Risks: Stress May Harm Preemies’ Development',
'kicker': 'Vital Signs',
'content_kicker': None,
'print_headline': 'Risks: Stress May Harm Preemies’ Development',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Brain', 'rank': 1, 'major': 'N'},
{'name': 'organizations',
'value': 'Washington University',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Anxiety and Stress',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Obstetrics',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Premature Babies', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 6,
'major': 'N'}],
'pub_date': '2011-10-10T16:37:18+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'subsection_name': 'Research',
'byline': {'original': 'By Nicholas Bakalar',
'person': [{'firstname': 'Nicholas',
'middlename': None,
'lastname': 'Bakalar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c479ca5a-45a5-5eed-b1f7-cb1b8392edc3',
'word_count': 201,
'uri': 'nyt://article/c479ca5a-45a5-5eed-b1f7-cb1b8392edc3'},
{'abstract': 'Susan Chira’s reporting for her book “A Mother’s Place” took her beyond the stifling echo chamber of received wisdom.',
'web_url': 'https://www.nytimes.com/2013/01/13/books/review/up-front.html',
'snippet': 'Susan Chira’s reporting for her book “A Mother’s Place” took her beyond the stifling echo chamber of received wisdom.',
'lead_paragraph': 'In her review of Susanna Sonnenberg’s “She Matters,” a memoir of female friendships, Susan Chira makes note of a particular kind of connection that can develop between women: “In the land of Cheerios, dirty diapers, fleeting naps and interrupted sleep, other mothers are a lifeline.”',
'print_section': 'BR',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/13/books/review/0113-upfront/0113-upfront-jumbo.jpg',
'height': 1024,
'width': 630,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/13/books/review/0113-upfront/0113-upfront-popup.jpg',
'height': 500,
'width': 308,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/13/books/review/0113-upfront/0113-upfront-superJumbo.jpg',
'height': 1938,
'width': 1193,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/13/books/review/0113-upfront/0113-upfront-articleInline.jpg',
'height': 309,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'}],
'headline': {'main': 'Up Front',
'kicker': None,
'content_kicker': None,
'print_headline': 'Up Front',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Chira, Susan', 'rank': 2, 'major': 'N'}],
'pub_date': '2013-01-11T15:11:20+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By The Editors',
'person': [],
'organization': 'The Editors'},
'type_of_material': 'News',
'_id': 'nyt://article/01b483f4-4dac-5033-a966-733bdaef670a',
'word_count': 224,
'uri': 'nyt://article/01b483f4-4dac-5033-a966-733bdaef670a'},
{'abstract': '“By the time Henry House was four months old, a copy of his picture was being carried in the pocketbooks of seven different women, each of whom called him her son.”',
'web_url': 'https://www.nytimes.com/2010/03/28/books/excerpt-irresistible-henry-house.html',
'snippet': '“By the time Henry House was four months old, a copy of his picture was being carried in the pocketbooks of seven different women, each of whom called him her son.”',
'lead_paragraph': 'Chapter 1: Welcome Home, Henry ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': '‘The Irresistible Henry House’',
'kicker': 'Excerpt',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'}],
'pub_date': '2010-03-26T18:58:33+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'byline': {'original': 'By Lisa Grunwald',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Grunwald',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'First Chapter',
'_id': 'nyt://article/c1ca7c86-b604-5c44-bb89-6617d46536de',
'word_count': 2809,
'uri': 'nyt://article/c1ca7c86-b604-5c44-bb89-6617d46536de'},
{'abstract': 'Swaddling—wrapping a baby securely in a thin blanket—can help minimize the startle reflex, replicate the coziness of the womb, and calm a baby who’s overstimulated. To find the best swaddles, we had five families spend two weeks testing 11 of them with babies ranging in age from 2 to 12 weeks, and talked to four...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-baby-swaddles/',
'snippet': 'Swaddling—wrapping a baby securely in a thin blanket—can help minimize the startle reflex, replicate the coziness of the womb, and calm a baby who’s overstimulated. To find the best swaddles, we had five families spend two weeks testing 11 of them...',
'lead_paragraph': 'Swaddling—wrapping a baby securely in a thin blanket—can help minimize the startle reflex, replicate the coziness of the womb, and calm a baby who’s overstimulated. To find the best swaddles, we had five families spend two weeks testing 11 of them with babies ranging in age from 2 to 12 weeks, and talked to four...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2019/01/baby-swaddles-lowres-6088.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2019/01/baby-swaddles-lowres-6088.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2019/01/baby-swaddles-lowres-6088.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2019/01/baby-swaddles-lowres-6088.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Baby Swaddles',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2019-01-09T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/8fab3b79-707e-57c2-990d-a626507a84fc',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/8fab3b79-707e-57c2-990d-a626507a84fc'},
{'abstract': 'A combat-ready balm to shield you from life’s everyday battles.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/05/04/vain-glorious-skincando-salve-our-troops/',
'snippet': 'A combat-ready balm to shield you from life’s everyday battles.',
'lead_paragraph': 'Who: Skincando',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Vain Glorious | Skincando- Salve our Troops',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-05-04T13:36:43+0000',
'document_type': 'article',
'news_desk': 'TStyle',
'section_name': 'T Magazine',
'byline': {'original': 'By Katie Chang',
'person': [{'firstname': 'Katie',
'middlename': None,
'lastname': 'Chang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/e9006338-ce77-5db4-a880-d774b8d3754c',
'word_count': 199,
'uri': 'nyt://article/e9006338-ce77-5db4-a880-d774b8d3754c'},
{'abstract': 'Every major league stadium will let in fans to start the season, but capacities vary, ranging from just over 1,000 to 40,300.',
'web_url': 'https://www.nytimes.com/2021/03/31/sports/baseball/mlb-stadium-capacity-2021.html',
'snippet': 'Every major league stadium will let in fans to start the season, but capacities vary, ranging from just over 1,000 to 40,300.',
'lead_paragraph': '[See photos and follow live coverage from opening day.]',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/31mlb-ballparks-top-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/03/31/sports/31mlb-ballparks-top/merlin_185751288_5f8626d7-c180-4d1b-ad78-4238d9693210-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How Each Baseball Stadium Will Handle Fans to Start 2021',
'kicker': '2021 M.L.B. Season Preview',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Baseball',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'ARIZONA DIAMONDBACKS',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Atlanta Braves',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Baltimore Orioles',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Chicago Cubs',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Chicago White Sox',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Cincinnati Reds',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Colorado Rockies',
'rank': 8,
'major': 'N'},
{'name': 'organizations',
'value': 'Detroit Tigers',
'rank': 9,
'major': 'N'},
{'name': 'organizations',
'value': 'Houston Astros',
'rank': 10,
'major': 'N'},
{'name': 'organizations',
'value': 'Kansas City Royals',
'rank': 11,
'major': 'N'},
{'name': 'organizations',
'value': 'Los Angeles Angels of Anaheim',
'rank': 12,
'major': 'N'},
{'name': 'organizations',
'value': 'Los Angeles Dodgers',
'rank': 13,
'major': 'N'},
{'name': 'organizations',
'value': 'Miami Marlins',
'rank': 14,
'major': 'N'},
{'name': 'organizations',
'value': 'Milwaukee Brewers',
'rank': 15,
'major': 'N'},
{'name': 'organizations',
'value': 'Minnesota Twins',
'rank': 16,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Mets',
'rank': 17,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Yankees',
'rank': 18,
'major': 'N'},
{'name': 'organizations',
'value': 'Oakland Athletics',
'rank': 19,
'major': 'N'},
{'name': 'organizations',
'value': 'Philadelphia Phillies',
'rank': 20,
'major': 'N'},
{'name': 'organizations',
'value': 'Pittsburgh Pirates',
'rank': 21,
'major': 'N'},
{'name': 'organizations',
'value': 'San Diego Padres',
'rank': 22,
'major': 'N'},
{'name': 'organizations',
'value': 'San Francisco Giants',
'rank': 23,
'major': 'N'},
{'name': 'organizations',
'value': 'Seattle Mariners',
'rank': 24,
'major': 'N'},
{'name': 'organizations',
'value': 'St Louis Cardinals',
'rank': 25,
'major': 'N'},
{'name': 'organizations',
'value': 'Tampa Bay Rays',
'rank': 26,
'major': 'N'},
{'name': 'organizations',
'value': 'Texas Rangers',
'rank': 27,
'major': 'N'},
{'name': 'organizations',
'value': 'Toronto Blue Jays',
'rank': 28,
'major': 'N'},
{'name': 'organizations',
'value': 'Washington Nationals',
'rank': 29,
'major': 'N'}],
'pub_date': '2021-03-31T12:58:01+0000',
'document_type': 'article',
'news_desk': 'Sports',
'section_name': 'Sports',
'subsection_name': 'Baseball',
'byline': {'original': 'By The New York Times',
'person': [],
'organization': 'The New York Times'},
'type_of_material': 'News',
'_id': 'nyt://article/d481c81c-8e93-52c8-b5c6-14f1dbd6f27a',
'word_count': 1018,
'uri': 'nyt://article/d481c81c-8e93-52c8-b5c6-14f1dbd6f27a'},
{'abstract': 'Mr. Evans often sits with the rest of Ms. Holmes’s family in the courtroom.',
'web_url': 'https://www.nytimes.com/2021/11/22/technology/billy-evans-elizabeth-holmes-boyfriend.html',
'snippet': 'Mr. Evans often sits with the rest of Ms. Holmes’s family in the courtroom.',
'lead_paragraph': 'Elizabeth Holmes, the founder of the blood testing start-up Theranos, arrived in court on Monday for her second day of testimony. She came with her mother, Noel Holmes, and another person who has been a consistent presence alongside her at the trial: Billy Evans, her partner.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-popup.jpg',
'height': 432,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-jumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-master495.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-master768.jpg',
'height': 511,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-horizontalMediumAt2X.jpg',
'height': 4024,
'width': 6035,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-threeByTwoLargeAt2X.jpg',
'height': 4024,
'width': 6035,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/22theranos-trial-billyevans-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/22/business/22theranos-trial-billyevans/merlin_194397147_7665485d-047b-4b7d-9c88-540c92ad62cc-mobileMasterAt3x.jpg',
'height': 1198,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'A constant support: Billy Evans, Elizabeth Holmes’s partner.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Start-ups',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Computers and the Internet',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Frauds and Swindling',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Theranos Inc',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Holmes, Elizabeth (1984- )',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Personal Profile',
'rank': 6,
'major': 'N'},
{'name': 'persons',
'value': 'Evans, William "Billy"',
'rank': 7,
'major': 'N'}],
'pub_date': '2021-11-22T18:03:41+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Erin Woo',
'person': [{'firstname': 'Erin',
'middlename': None,
'lastname': 'Woo',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/891d8e57-15e6-577e-82b4-d13c7866b02d',
'word_count': 195,
'uri': 'nyt://article/891d8e57-15e6-577e-82b4-d13c7866b02d'},
{'abstract': 'Bare essentials and clear plastic bags are the norm at N.F.L. games this season under new rules that were put in place after the Boston Marathon bombings in April.',
'web_url': 'https://www.nytimes.com/2013/08/21/sports/football/nfl-fans-met-by-tighter-bag-policy.html',
'snippet': 'Bare essentials and clear plastic bags are the norm at N.F.L. games this season under new rules that were put in place after the Boston Marathon bombings in April.',
'lead_paragraph': 'Joe and Lynn Gurski and their infant son, Ryan, arrived prepared to see the Jets play the Jaguars at MetLife Stadium on Saturday. ',
'print_section': 'B',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-blog533-v2.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-superJumbo-v2.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-master1050-v2.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-hpLarge-v2.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-largeWidescreen573-v2.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-videoHpMedium-v2.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/21/sports/Y-BAGS-1/Y-BAGS-1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'N.F.L. Fans Met by Tighter Bag Policy',
'kicker': None,
'content_kicker': None,
'print_headline': 'N.F.L. Fans Met by Tighter Bag Policy',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Football',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'National Football League',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Stadiums and Arenas',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Security and Warning Systems',
'rank': 5,
'major': 'N'}],
'pub_date': '2013-08-21T01:04:07+0000',
'document_type': 'article',
'news_desk': 'Sports',
'section_name': 'Sports',
'subsection_name': 'Pro Football',
'byline': {'original': 'By Ken Belson',
'person': [{'firstname': 'Ken',
'middlename': None,
'lastname': 'Belson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/71411979-ccb5-5448-8867-5ec0c7d75103',
'word_count': 984,
'uri': 'nyt://article/71411979-ccb5-5448-8867-5ec0c7d75103'},
{'abstract': 'What’s the point of seeing the Kaaba if you can’t appreciate the miracle that is two maniac toddlers running around after midnight?',
'web_url': 'https://www.nytimes.com/2017/08/26/opinion/sunday/hajj-with-dad-brain.html',
'snippet': 'What’s the point of seeing the Kaaba if you can’t appreciate the miracle that is two maniac toddlers running around after midnight?',
'lead_paragraph': 'It’s midnight, three days before I leave for my first hajj, the five-day religious pilgrimage that’s among the most meaningful experiences in a Muslim’s life. When I arrive in Mecca, I’ll join nearly two million believers who’ve traveled from Virginia, Kabul, and everywhere in between: a dysfunctional but tight-knit family of believers, dreamers and sinners, briefly united under the piercing sun of Mecca.',
'print_section': 'SR',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-articleLarge.jpg',
'height': 418,
'width': 600,
'legacy': {'xlarge': 'images/2017/08/27/opinion/sunday/27ali/27ali-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 418},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-blog480.jpg',
'height': 334,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-blog427.jpg',
'height': 298,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-tmagArticle.jpg',
'height': 412,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-jumbo.jpg',
'height': 713,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-blog225.jpg',
'height': 157,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-master675.jpg',
'height': 470,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-master180.jpg',
'height': 125,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-master768.jpg',
'height': 535,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-popup.jpg',
'height': 453,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-blog533.jpg',
'height': 371,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-tmagSF.jpg',
'height': 252,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-slide.jpg',
'height': 418,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-superJumbo.jpg',
'height': 1427,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-master1050.jpg',
'height': 732,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-master495.jpg',
'height': 345,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-master315.jpg',
'height': 219,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/08/27/opinion/sunday/27ali/27ali-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/08/27/opinion/sunday/27ali/27ali-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-articleInline.jpg',
'height': 132,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-hpSmall.jpg',
'height': 114,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-blogSmallInline.jpg',
'height': 105,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/27/opinion/sunday/27ali/27ali-mediumFlexible177.jpg',
'height': 123,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'}],
'headline': {'main': 'Preparing for Hajj With a Case of ‘Dad Brain’',
'kicker': 'Contributing Op-Ed Writer',
'content_kicker': None,
'print_headline': 'A Tired Dad’s Hajj Checklist',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Pilgrimages',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Muslims and Islam', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'}],
'pub_date': '2017-08-26T18:30:24+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By Wajahat Ali',
'person': [{'firstname': 'Wajahat',
'middlename': None,
'lastname': 'Ali',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/e31a5c56-623f-5c97-8232-861d2bbff83e',
'word_count': 929,
'uri': 'nyt://article/e31a5c56-623f-5c97-8232-861d2bbff83e'},
{'abstract': 'Low birth weight and preterm birth significantly increase the risk for hip replacement in adulthood, a new study has found.',
'web_url': 'https://well.blogs.nytimes.com/2014/11/06/low-birth-weight-tied-to-hip-replacement-in-adulthood/',
'snippet': 'Low birth weight and preterm birth significantly increase the risk for hip replacement in adulthood, a new study has found.',
'lead_paragraph': 'Low birth weight and preterm birth significantly increase the risk for hip replacement in adulthood, a new study has found.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2012/05/29/health/well_childbirth/well_childbirth-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-jumbo.jpg',
'height': 214,
'width': 215,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-master180.jpg',
'height': 179,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-popup.jpg',
'height': 214,
'width': 215,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-slide.jpg',
'height': 214,
'width': 215,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-superJumbo.jpg',
'height': 214,
'width': 215,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-articleInline.jpg',
'height': 189,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-hpSmall.jpg',
'height': 162,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-blogSmallInline.jpg',
'height': 150,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-mediumFlexible177.jpg',
'height': 176,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/05/29/health/well_childbirth/well_childbirth-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/05/29/health/well_childbirth/well_childbirth-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Low Birth Weight Tied to Hip Replacement in Adulthood',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'ARTHRITIS',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Hips', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Osteoarthritis', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Premature Babies', 'rank': 4, 'major': 'N'}],
'pub_date': '2014-11-06T15:20:39+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Nicholas Bakalar',
'person': [{'firstname': 'Nicholas',
'middlename': None,
'lastname': 'Bakalar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f61330b2-b5f5-5b23-9cf4-a3c6304833ca',
'word_count': 219,
'uri': 'nyt://article/f61330b2-b5f5-5b23-9cf4-a3c6304833ca'}],
[{'abstract': 'A range of colors, textures, frequencies and volumes are considered normal. But there are some things to watch out for.',
'web_url': 'https://www.nytimes.com/article/baby-poop-guide.html',
'snippet': 'A range of colors, textures, frequencies and volumes are considered normal. But there are some things to watch out for.',
'lead_paragraph': 'Baby poop is a source of great mystery — and often, concern — for many parents. Sometimes it’s green and mushy; other times it’s yellow and seedy. What does it all mean? “Baby poop is not like adult poop,” said Dr. Katie Lockwood, M.D., an attending physician at Children’s Hospital of Philadelphia. “So there are lots of questions about it.”',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-superJumbo.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-horizontalMediumAt2X.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-threeByTwoLargeAt2X.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/22110ba6851840dd9e7d6012a4c6ed32-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/31/multimedia/parenting-poop/parenting-poop-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'What Should Baby Poop Look Like, Anyway?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Baby Foods', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Infant Formulas', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Constipation', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Diarrhea', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Bowels', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Digestive Tract', 'rank': 8, 'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 9, 'major': 'N'}],
'pub_date': '2020-04-13T20:48:08+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Guides',
'byline': {'original': 'By Annie Sneed',
'person': [{'firstname': 'Annie',
'middlename': None,
'lastname': 'Sneed',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/56828ace-d597-5fce-bd15-b9c5a5c2fc38',
'word_count': 1746,
'uri': 'nyt://article/56828ace-d597-5fce-bd15-b9c5a5c2fc38'},
{'abstract': 'Measles cases jump as unvaccinated travelers return home, surgically implanted bombs are latest air travel worry, a $100 weekend in Istanbul and other consumer focused news from The New York Times.',
'web_url': 'https://bucks.blogs.nytimes.com/2011/07/07/thursday-reading-measles-cases-spike-as-unvaccinated-travelers-return-home/',
'snippet': 'Measles cases jump as unvaccinated travelers return home, surgically implanted bombs are latest air travel worry, a $100 weekend in Istanbul and other consumer focused news from The New York Times.',
'lead_paragraph': 'A variety of consumer-focused articles appears daily in The New York Times and online in our blogs. Each weekday morning, we gather them together here so you can quickly scan the news that could hit you in your wallet. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Thursday Reading: Measles Cases Spike as Unvaccinated Travelers Return Home',
'kicker': 'Bucks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-07-07T12:51:21+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Your Money',
'byline': {'original': 'By Ann Carrns',
'person': [{'firstname': 'Ann',
'middlename': None,
'lastname': 'Carrns',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2b486988-0a4f-5b7b-ac4f-7c57cc46d3e0',
'word_count': 174,
'uri': 'nyt://article/2b486988-0a4f-5b7b-ac4f-7c57cc46d3e0'},
{'abstract': 'In a study of treatments for skin infections, the choice between clindamycin and cephalexin made no difference.',
'web_url': 'https://www.nytimes.com/2011/03/01/health/research/01safety.html',
'snippet': 'In a study of treatments for skin infections, the choice between clindamycin and cephalexin made no difference.',
'lead_paragraph': 'Preventing infection in a wound may depend less on choosing the right antibiotic than on simply keeping it clean.',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Safety: Wound Care May Matter More Than Antibiotics',
'kicker': 'Vital Signs',
'content_kicker': None,
'print_headline': 'SAFETY: Wound Care May Matter More Than Drugs',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Medicine and Health',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Antibiotics', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Methicillin-Resistant Staphylococcus Aureus',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Research', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-02-25T18:05:56+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'subsection_name': 'Research',
'byline': {'original': 'By Nicholas Bakalar',
'person': [{'firstname': 'Nicholas',
'middlename': None,
'lastname': 'Bakalar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/baaf855a-8af4-5e65-b7f5-4cdbeaba4c14',
'word_count': 223,
'uri': 'nyt://article/baaf855a-8af4-5e65-b7f5-4cdbeaba4c14'},
{'abstract': 'The status of expiring unemployment benefits, coverage for autism-related health expenses and other consumer-focused items from Wednesday’s Times.',
'web_url': 'https://bucks.blogs.nytimes.com/2010/06/23/wednesday-reading-expiring-unemployment-benefits/',
'snippet': 'The status of expiring unemployment benefits, coverage for autism-related health expenses and other consumer-focused items from Wednesday’s Times.',
'lead_paragraph': ' A variety of consumer-focused articles appear daily in The New York Times and online in our blogs. Each weekday morning, we gather them together here so you can quickly scan the news that could hit your wallet.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Wednesday Reading: Expiring Unemployment Benefits',
'kicker': 'Bucks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-06-23T14:43:35+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Your Money',
'byline': {'original': 'By Jennifer Saranow Schultz',
'person': [{'firstname': 'Jennifer',
'middlename': 'Saranow',
'lastname': 'Schultz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/ff979175-b803-57df-921c-3bfb88788a3c',
'word_count': 238,
'uri': 'nyt://article/ff979175-b803-57df-921c-3bfb88788a3c'},
{'abstract': 'Search engine features that benefit consumers, charitable giving in a recession and other consumer-focused items from The Times this past weekend and Monday.',
'web_url': 'https://bucks.blogs.nytimes.com/2010/08/02/monday-reading-find-cheaper-fares/',
'snippet': 'Search engine features that benefit consumers, charitable giving in a recession and other consumer-focused items from The Times this past weekend and Monday.',
'lead_paragraph': ' A variety of consumer-focused articles appears daily in The New York Times and online in our blogs. Each weekday morning, we gather them together here so you can quickly scan the news that could hit your wallet.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Monday Reading: Find Cheaper Fares',
'kicker': 'Bucks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-08-02T14:38:28+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Your Money',
'byline': {'original': 'By Jennifer Saranow Schultz',
'person': [{'firstname': 'Jennifer',
'middlename': 'Saranow',
'lastname': 'Schultz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/755759ff-6505-5da0-9a3a-7b4601f2b795',
'word_count': 229,
'uri': 'nyt://article/755759ff-6505-5da0-9a3a-7b4601f2b795'},
{'abstract': 'The mayors of New York and Newark responded to the snow on Twitter in very different ways.',
'web_url': 'https://thecaucus.blogs.nytimes.com/2010/12/29/twitter-is-newark-mayors-friend-as-he-digs-residents-out/',
'snippet': 'The mayors of New York and Newark responded to the snow on Twitter in very different ways.',
'lead_paragraph': 'The contrast on Twitter couldn’t have been more stark.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Twitter Is Newark Mayor’s Friend as He Digs Residents Out',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Delays (Transportation)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Mayors', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Snow and Snowstorms',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Social Networking (Internet)',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Weather', 'rank': 6, 'major': 'N'},
{'name': 'persons',
'value': 'Barry, Marion S Jr',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Booker, Cory A', 'rank': 8, 'major': 'N'},
{'name': 'persons',
'value': 'Christie, Christopher J',
'rank': 9,
'major': 'N'},
{'name': 'organizations', 'value': 'Twitter', 'rank': 10, 'major': 'N'},
{'name': 'glocations', 'value': 'New Jersey', 'rank': 11, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 12, 'major': 'N'},
{'name': 'glocations', 'value': 'Newark (NJ)', 'rank': 13, 'major': 'N'}],
'pub_date': '2010-12-29T16:26:21+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Michael D. Shear',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/d76093ae-1c09-5f8b-9946-96e33fb346fc',
'word_count': 526,
'uri': 'nyt://article/d76093ae-1c09-5f8b-9946-96e33fb346fc'},
{'abstract': 'He feels like an equal parent at home — so why do doctors and day care workers insist on talking to his wife?',
'web_url': 'https://parenting.blogs.nytimes.com/2012/04/27/as-parents-are-fathers-the-second-sex/',
'snippet': 'He feels like an equal parent at home — so why do doctors and day care workers insist on talking to his wife?',
'lead_paragraph': 'Ten months ago, my wife and I had our first child, a boy. He was born in London, where we’ve been living for nearly four years.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'As Parents, Are Fathers the Second Sex?',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-04-27T20:03:47+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Gary Moskowitz',
'person': [{'firstname': 'Gary',
'middlename': None,
'lastname': 'Moskowitz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/295ae03b-be0f-57d2-85f2-df367e991397',
'word_count': 607,
'uri': 'nyt://article/295ae03b-be0f-57d2-85f2-df367e991397'},
{'abstract': 'It will take an eight-member team three weeks to dismantle and remove the 140-ton mass of disposable wipes and grease.',
'web_url': 'https://www.nytimes.com/2017/09/13/world/europe/uk-london-fatberg.html',
'snippet': 'It will take an eight-member team three weeks to dismantle and remove the 140-ton mass of disposable wipes and grease.',
'lead_paragraph': 'LONDON — There is a monster beneath the streets of London, menacing the East End underworld.',
'print_section': 'A',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-largeHorizontalJumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/14/business/14FATBERG1/14FATBERG1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'}],
'headline': {'main': 'Sewer in London’s East End Menaced by Giant Fatberg',
'kicker': None,
'content_kicker': None,
'print_headline': 'Menacing Sewers Under London: A Blob Called Fatberg',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sewers and Sewage',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Thames Water',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'London (England)',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'River Thames (England)',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 5,
'major': 'N'}],
'pub_date': '2017-09-13T16:16:49+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Amie Tsang',
'person': [{'firstname': 'Amie',
'middlename': None,
'lastname': 'Tsang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/992444d6-952a-5466-85ac-44154a0d5f21',
'word_count': 644,
'uri': 'nyt://article/992444d6-952a-5466-85ac-44154a0d5f21'},
{'abstract': 'Where do you draw your lines?',
'web_url': 'https://parenting.blogs.nytimes.com/2010/12/10/appropriate-breast-feeding/',
'snippet': 'Where do you draw your lines?',
'lead_paragraph': 'A mother in England still breast feeds her 6-year-old son, according to an interview yesterday with The Daily Mail.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Appropriate Breast-Feeding',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-12-10T19:33:19+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/48060612-bd84-544e-b593-0df346f83825',
'word_count': 658,
'uri': 'nyt://article/48060612-bd84-544e-b593-0df346f83825'},
{'abstract': 'Do intimate relationships make for better music? Are rock bands with couples better or worse than, say, siblings?',
'web_url': 'https://6thfloor.blogs.nytimes.com/2011/08/01/battle-of-the-bands-couples-vs-siblings/',
'snippet': 'Do intimate relationships make for better music? Are rock bands with couples better or worse than, say, siblings?',
'lead_paragraph': 'On paper, Mates of State have a few serious strikes against them. They’re a two-person band, which I’ve always found a little lame. They’re married. They live in the Connecticut suburbs. They’ve not only toured with their child; they’ve also written an online diary about it called — oh, no — “Band on the Diaper Run.” I mean, c’mon: what more could they possibly do to desecrate the spirit of rock?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Battle of the Bands: Couples vs. Siblings',
'kicker': 'The 6th Floor',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Music', 'rank': 1, 'major': 'N'},
{'name': 'organizations',
'value': 'Fiery Furnaces',
'rank': 2,
'major': 'N'},
{'name': 'organizations', 'value': 'Kinks', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Connecticut', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-08-01T18:16:44+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Magazine',
'byline': {'original': 'By Hugo Lindgren',
'person': [{'firstname': 'Hugo',
'middlename': None,
'lastname': 'Lindgren',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e0a5a10f-05a2-5555-a2a0-53568b3c455a',
'word_count': 219,
'uri': 'nyt://article/e0a5a10f-05a2-5555-a2a0-53568b3c455a'}],
[{'abstract': 'Two ingenious new wordbooks enlighten and entertain.',
'web_url': 'https://www.nytimes.com/2012/04/04/books/the-big-book-of-words-and-pictures-and-picture-my-day.html',
'snippet': 'Two ingenious new wordbooks enlighten and entertain.',
'lead_paragraph': 'Nothing is quite so boring as reading a wordbook aloud to a toddler for the third or 13th time. The endless pointing and repeating and prodding. The clip-art photographs of obsolete household objects and objectionable clothing items, seeming to date from sometime in the early 1980s when nothing looked good.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/04/books/04bigbook/04bigbook-articleLarge.jpg',
'height': 367,
'width': 600,
'legacy': {'xlarge': 'images/2012/04/04/books/04bigbook/04bigbook-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 367},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/04/books/04bigbook/04bigbook-blog480.jpg',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/04/books/04bigbook/04bigbook-jumbo.jpg',
'height': 628,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/04/books/04bigbook/04bigbook-popup.jpg',
'height': 399,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/04/books/04bigbook/04bigbook-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/04/books/04bigbook/04bigbook-sfSpan.jpg',
'height': 262,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/04/books/04bigbook/04bigbook-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/04/04/books/04bigbook/04bigbook-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'More Than Words Can Say',
'kicker': "Children's Books",
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Lacroix, Cynthia', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Cordier, Severine', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Konnecke, Ole', 'rank': 4, 'major': 'N'}],
'pub_date': '2012-04-04T14:47:19+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Books',
'byline': {'original': 'By Pamela Paul',
'person': [{'firstname': 'Pamela',
'middlename': None,
'lastname': 'Paul',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/f3667769-6839-5afc-9613-cc6d08fc7192',
'word_count': 665,
'uri': 'nyt://article/f3667769-6839-5afc-9613-cc6d08fc7192'},
{'abstract': 'These costumed New Yorkers — or are they? — got a jump on the action this weekend.',
'web_url': 'https://www.nytimes.com/2017/10/30/style/adults-in-halloween-costumes.html',
'snippet': 'These costumed New Yorkers — or are they? — got a jump on the action this weekend.',
'lead_paragraph': 'Halloween, like adolescence and the electioneering season, gets longer each year. It also appears to get older. It is now totally common in big cities to see absolutely adult-size people roaming about in costume at any hour within a two-week period. Is that a vampire on the subway, or is it your accountant?',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-articleLarge.jpg',
'height': 401,
'width': 600,
'legacy': {'xlarge': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 401},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-blog480.jpg',
'height': 321,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-tmagArticle.jpg',
'height': 396,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-slide.jpg',
'height': 401,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-jumbo.jpg',
'height': 684,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-superJumbo.jpg',
'height': 1369,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-master1050.jpg',
'height': 702,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-master675.jpg',
'height': 451,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-master495.jpg',
'height': 331,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-master768.jpg',
'height': 513,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/30/fashion/30COSTUMES1/30COSTUMES1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Adults in Halloween Costumes',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Halloween',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Costumes', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 3, 'major': 'N'}],
'pub_date': '2017-10-30T21:05:54+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Jonathan Mehring and Choire Sicha',
'person': [{'firstname': 'Jonathan',
'middlename': None,
'lastname': 'Mehring',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Choire',
'middlename': None,
'lastname': 'Sicha',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/45054455-4fe9-5591-9dd4-57bb0a66ee58',
'word_count': 251,
'uri': 'nyt://article/45054455-4fe9-5591-9dd4-57bb0a66ee58'},
{'abstract': 'The rapper’s latest album, “Blame It on Baby,” opened at the top of the Billboard chart with the equivalent of 124,000 sales.',
'web_url': 'https://www.nytimes.com/2020/04/27/arts/music/dababy-billboard.html',
'snippet': 'The rapper’s latest album, “Blame It on Baby,” opened at the top of the Billboard chart with the equivalent of 124,000 sales.',
'lead_paragraph': 'When the North Carolina rapper DaBaby first reached No. 1 on Billboard’s album chart last fall, it was the triumph of a fast-moving newcomer who was a master of meme-ready marketing — that album, “Kirk,” was the third project in 12 months from a musician who had gotten attention by walking the streets of South by Southwest wearing only jewels and an adult diaper.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/04/27/arts/27billboard/27billboard-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-horizontalMediumAt2X.jpg',
'height': 2237,
'width': 3356,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-threeByTwoLargeAt2X.jpg',
'height': 2237,
'width': 3356,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/27billboard-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/27/arts/27billboard/merlin_168446484_c3f273e0-a7b1-402c-9240-093ad16cde5b-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'DaBaby Unseats the Weeknd at No. 1',
'kicker': 'The Charts',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Rap and Hip-Hop',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'DaBaby (Rapper)', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'APPLE, FIONA', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Lil Baby (Rapper)', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Tesfaye, Abel (Weeknd)',
'rank': 5,
'major': 'N'},
{'name': 'creative_works',
'value': 'Fetch the Bolt Cutters (Album)',
'rank': 6,
'major': 'N'},
{'name': 'creative_works',
'value': 'After Hours (Album)',
'rank': 7,
'major': 'N'},
{'name': 'creative_works',
'value': 'Eternal Atake (Album)',
'rank': 8,
'major': 'N'},
{'name': 'creative_works',
'value': 'Blame It on Baby (Album)',
'rank': 9,
'major': 'N'}],
'pub_date': '2020-04-27T17:46:56+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Music',
'byline': {'original': 'By Ben Sisario',
'person': [{'firstname': 'Ben',
'middlename': None,
'lastname': 'Sisario',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8d390a16-6cde-537d-bc24-dbf150921554',
'word_count': 222,
'uri': 'nyt://article/8d390a16-6cde-537d-bc24-dbf150921554'},
{'abstract': 'Investigators are examining accusations of gross negligence after dozens of deaths at a residence where health care staff fled amid a coronavirus outbreak.',
'web_url': 'https://www.nytimes.com/2020/04/16/world/canada/montreal-nursing-homes-coronavirus.html',
'snippet': 'Investigators are examining accusations of gross negligence after dozens of deaths at a residence where health care staff fled amid a coronavirus outbreak.',
'lead_paragraph': 'MONTREAL — Thirty-one people were found dead in less than a month at a nursing home in Montreal, at least five confirmed to have coronavirus — a powerful Canadian emblem of how nursing homes are among the places hardest hit by the pandemic.',
'print_section': 'A',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-articleLarge.jpg',
'height': 381,
'width': 600,
'legacy': {'xlarge': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 381},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-popup.jpg',
'height': 413,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-blog480.jpg',
'height': 305,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-blog533.jpg',
'height': 338,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-blog427.jpg',
'height': 271,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-tmagSF.jpg',
'height': 230,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-tmagArticle.jpg',
'height': 376,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-slide.jpg',
'height': 381,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-jumbo.jpg',
'height': 650,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-superJumbo.jpg',
'height': 756,
'width': 1191,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-blog225.jpg',
'height': 143,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-master1050.jpg',
'height': 666,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-master675.jpg',
'height': 428,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-master495.jpg',
'height': 314,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-master180.jpg',
'height': 114,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-master315.jpg',
'height': 200,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-master768.jpg',
'height': 487,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-mediumSquareAt3X.jpg',
'height': 756,
'width': 756,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-horizontalMediumAt2X.jpg',
'height': 756,
'width': 1134,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-threeByTwoLargeAt2X.jpg',
'height': 756,
'width': 1134,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-threeByTwoMediumAt2X.jpg',
'height': 756,
'width': 1134,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-articleInline.jpg',
'height': 121,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-hpSmall.jpg',
'height': 103,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-blogSmallInline.jpg',
'height': 96,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-mediumFlexible177.jpg',
'height': 112,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-videoSixteenByNineJumbo1600.jpg',
'height': 670,
'width': 1191,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/16virus-quebec1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/16/world/16virus-quebec1/merlin_171554196_a2f37749-ec97-47fe-94f0-269c73b823ef-mobileMasterAt3x.jpg',
'height': 756,
'width': 1191,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '31 Deaths: Toll at Quebec Nursing Home in Pandemic Reflects Global Phenomenon',
'kicker': None,
'content_kicker': None,
'print_headline': '31 Die in Care Facility That Was Left With 2 Nurses to Look In on 150 Beds',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Nursing Homes', 'rank': 2, 'major': 'N'},
{'name': 'glocations',
'value': 'Montreal (Quebec)',
'rank': 3,
'major': 'N'}],
'pub_date': '2020-04-16T19:03:03+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Canada',
'byline': {'original': 'By Dan Bilefsky',
'person': [{'firstname': 'Dan',
'middlename': None,
'lastname': 'Bilefsky',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2c7548af-dd7c-56d4-90f2-712407d2862b',
'word_count': 1048,
'uri': 'nyt://article/2c7548af-dd7c-56d4-90f2-712407d2862b'},
{'abstract': 'The Wisconsin Republican fought off a challenge from former Senator Russ Feingold, retaining his seat in a Senate race critical to Republicans.',
'web_url': 'https://www.nytimes.com/2016/11/09/us/politics/wisconsin-senate-ron-johnson.html',
'snippet': 'The Wisconsin Republican fought off a challenge from former Senator Russ Feingold, retaining his seat in a Senate race critical to Republicans.',
'lead_paragraph': 'MIDDLETON, Wis. — Senator Ron Johnson of Wisconsin, a Republican, on Tuesday fought off a challenge from former Senator Russ Feingold, retaining his seat in a Senate race critical to Republicans.',
'print_section': 'P',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-articleLarge.jpg',
'height': 439,
'width': 600,
'legacy': {'xlarge': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 439},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-blog480.jpg',
'height': 352,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-blog427.jpg',
'height': 313,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-tmagArticle.jpg',
'height': 434,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-jumbo.jpg',
'height': 750,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-blog225.jpg',
'height': 165,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-master675.jpg',
'height': 494,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-master180.jpg',
'height': 132,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-master768.jpg',
'height': 562,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-popup.jpg',
'height': 476,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-blog533.jpg',
'height': 390,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-tmagSF.jpg',
'height': 265,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-slide.jpg',
'height': 439,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-superJumbo.jpg',
'height': 1500,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-master1050.jpg',
'height': 769,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-master495.jpg',
'height': 363,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-master315.jpg',
'height': 231,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-articleInline.jpg',
'height': 139,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-hpSmall.jpg',
'height': 119,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-blogSmallInline.jpg',
'height': 111,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-mediumFlexible177.jpg',
'height': 130,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/09/us/09senate-johnson/09senate-johnson-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'}],
'headline': {'main': 'Ron Johnson Retains Wisconsin Senate Seat',
'kicker': None,
'content_kicker': None,
'print_headline': 'Johnson Retains a Critical Seat',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Presidential Election of 2016',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Johnson, Ron (1955- )',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Wisconsin', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Feingold, Russell D',
'rank': 5,
'major': 'N'}],
'pub_date': '2016-11-09T04:29:37+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Julie Bosman',
'person': [{'firstname': 'Julie',
'middlename': None,
'lastname': 'Bosman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/83610b48-7706-523e-bc78-eeba52a07a4b',
'word_count': 219,
'uri': 'nyt://article/83610b48-7706-523e-bc78-eeba52a07a4b'},
{'abstract': 'Cities in the Rio Grande Valley have been a way station for reunified migrant families, who have been aided by loose network of volunteers and officials.',
'web_url': 'https://www.nytimes.com/2018/07/20/us/migrant-families-reunite-texas.html',
'snippet': 'Cities in the Rio Grande Valley have been a way station for reunified migrant families, who have been aided by loose network of volunteers and officials.',
'lead_paragraph': 'SAN JUAN, Tex. — The delivery trucks keep pulling up to one of the largest churches on the South Texas border. They have unloaded thousands of diapers in recent days — tall stacks of diaper boxes sit on pallets outside an auditorium, wrapped tightly in plastic. On Tuesday, Dairy Queen even showed up, delivering donated ice-cream bars.',
'print_section': 'A',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/07/21/us/21texas-1-print/20texas-02-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-horizontalMediumAt2X.jpg',
'height': 2333,
'width': 3500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-threeByTwoLargeAt2X.jpg',
'height': 2333,
'width': 3500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/merlin_141484362_cff22958-8e8c-4a31-a00d-86090aebac0b-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/21/us/21texas-1-print/20texas-02-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'As Migrant Families Reunite, Texas Border Cities Scramble to Help',
'kicker': None,
'content_kicker': None,
'print_headline': 'A Scramble at the Border to Lend a Hand to Reunited Families',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Family Separation Policy (US Immigration)',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Rio Grande Valley (Tex)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration Detention',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Illegal Immigration',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Catholic Charities',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Immigration and Customs Enforcement (US)',
'rank': 8,
'major': 'N'},
{'name': 'organizations',
'value': 'Health and Human Services Department',
'rank': 9,
'major': 'N'},
{'name': 'organizations',
'value': 'Homeland Security Department',
'rank': 10,
'major': 'N'},
{'name': 'glocations', 'value': 'McAllen (Tex)', 'rank': 11, 'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 12, 'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 13,
'major': 'N'}],
'pub_date': '2018-07-20T09:00:02+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Manny Fernandez and Mitchell Ferman',
'person': [{'firstname': 'Manny',
'middlename': None,
'lastname': 'Fernandez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Mitchell',
'middlename': None,
'lastname': 'Ferman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d26f89a5-bce0-5083-9097-eeab77b19604',
'word_count': 1067,
'uri': 'nyt://article/d26f89a5-bce0-5083-9097-eeab77b19604'},
{'abstract': 'The market for natural alternatives to household staples like diapers, hand soaps and paper towels has another niche business: condoms.',
'web_url': 'https://www.nytimes.com/2017/02/17/business/condoms-nontoxic-vegan-.html',
'snippet': 'The market for natural alternatives to household staples like diapers, hand soaps and paper towels has another niche business: condoms.',
'lead_paragraph': 'A dozen employees at Ricky’s, a beauty shop in downtown New York, huddled below a display of lustrous wigs. Around them, hair irons, press-on nails and makeup kits were stacked to the ceiling. But on this morning, the clerks had gathered to learn about an unusual new item on the shelves: nontoxic, eco-friendly vegan condoms.',
'print_section': 'BU',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-articleLarge.jpg',
'height': 385,
'width': 600,
'legacy': {'xlarge': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 385},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-blog480.jpg',
'height': 308,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-blog427.jpg',
'height': 274,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-tmagArticle.jpg',
'height': 380,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-jumbo.jpg',
'height': 657,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-blog225.jpg',
'height': 144,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-master675.jpg',
'height': 433,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-master180.jpg',
'height': 115,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-master768.jpg',
'height': 492,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-popup.jpg',
'height': 417,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-blog533.jpg',
'height': 342,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-tmagSF.jpg',
'height': 232,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-slide.jpg',
'height': 385,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-superJumbo.jpg',
'height': 1313,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-master1050.jpg',
'height': 673,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-master495.jpg',
'height': 317,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-master315.jpg',
'height': 202,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-articleInline.jpg',
'height': 122,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-hpSmall.jpg',
'height': 105,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-blogSmallInline.jpg',
'height': 97,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-mediumFlexible177.jpg',
'height': 114,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/02/19/business/19REVALUED1/19REVALUED1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'}],
'headline': {'main': 'Eco-Friendly, Nontoxic and Vegan: It’s a Condom',
'kicker': 'Revalued',
'content_kicker': None,
'print_headline': 'Taking Intimate Protection to Another Level',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Condoms',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Sustain Natural',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Hollender, Meika', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Seventh Generation',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Hollender, Jeffrey',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Sustainable Living',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Organic Foods and Products',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'Hazardous and Toxic Substances',
'rank': 9,
'major': 'N'}],
'pub_date': '2017-02-17T22:03:02+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Business Day',
'byline': {'original': 'By David Gelles',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Gelles',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3da18c6d-99d2-5d6c-b6ff-32308dcdcfcd',
'word_count': 1095,
'uri': 'nyt://article/3da18c6d-99d2-5d6c-b6ff-32308dcdcfcd'},
{'abstract': 'A defendant’s requests to use a restroom that can accommodate her wheelchair are thwarted.',
'web_url': 'https://www.nytimes.com/2014/10/08/nyregion/courthouse-serves-justice-with-indignity.html',
'snippet': 'A defendant’s requests to use a restroom that can accommodate her wheelchair are thwarted.',
'lead_paragraph': 'A team of lawyers was on the case. They sought help from a city councilman. All of them contacted a senior city lawyer. Tuesday was the day of reckoning.',
'print_section': 'A',
'print_page': '22',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Courthouse Serves Justice, With Indignity',
'kicker': None,
'content_kicker': None,
'print_headline': 'Courthouse Serves Justice, With Indignity',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Correction Department (NYC)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Disabilities', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Buildings (Structures)',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Lawyers for the Public Interest',
'rank': 6,
'major': 'N'},
{'name': 'glocations',
'value': 'Manhattan (NYC)',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Grant, Banetta', 'rank': 8, 'major': 'N'}],
'pub_date': '2014-10-08T02:39:11+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Jim Dwyer',
'person': [{'firstname': 'Jim',
'middlename': None,
'lastname': 'Dwyer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/713ca5f4-2209-5d2b-be1f-d58ab0a22c54',
'word_count': 706,
'uri': 'nyt://article/713ca5f4-2209-5d2b-be1f-d58ab0a22c54'},
{'abstract': 'Ms. Gillibrand’s campaign introduced a plan that would help new families with everything from diapers and nursery beds to paid leave and prekindergarten.',
'web_url': 'https://www.nytimes.com/2019/05/22/us/politics/gillibrand-family-bill-of-rights.html',
'snippet': 'Ms. Gillibrand’s campaign introduced a plan that would help new families with everything from diapers and nursery beds to paid leave and prekindergarten.',
'lead_paragraph': 'Senator Kirsten Gillibrand’s presidential campaign on Wednesday introduced a proposal aimed at investing heavily in maternal and child health, adoption and in vitro fertilization, paid family leave and universal prekindergarten.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-horizontalMediumAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-threeByTwoLargeAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/merlin_154997049_56bd9480-9f49-4071-bb00-8a36b337361f-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/22/us/politics/22gillibrand/22gillibrand-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Kirsten Gillibrand Proposes Huge Investments in Maternal Health, Child Care and Education',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Gillibrand, Kirsten E',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Tax Credits, Deductions and Exemptions',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Adoptions', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'In Vitro Fertilization',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Education (Pre-School)',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Family Leaves', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 9,
'major': 'N'},
{'name': 'subject', 'value': 'Child Care', 'rank': 10, 'major': 'N'}],
'pub_date': '2019-05-22T11:00:06+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Stephanie Saul',
'person': [{'firstname': 'Stephanie',
'middlename': None,
'lastname': 'Saul',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e03fb11f-8f42-5fb4-a6c3-6689ef002b34',
'word_count': 632,
'uri': 'nyt://article/e03fb11f-8f42-5fb4-a6c3-6689ef002b34'},
{'abstract': 'This word has appeared in 21 articles on NYTimes.com in the past year.',
'web_url': 'https://www.nytimes.com/2020/05/20/learning/word-quiz-agitprop.html',
'snippet': 'This word has appeared in 21 articles on NYTimes.com in the past year.',
'lead_paragraph': '_________',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Word + Quiz: agitprop',
'kicker': 'Word of the day',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2020-05-20T06:00:02+0000',
'document_type': 'article',
'news_desk': 'Learning',
'section_name': 'The Learning Network',
'byline': {'original': 'By The Learning Network',
'person': [],
'organization': 'The Learning Network'},
'type_of_material': 'News',
'_id': 'nyt://article/fc06e5d1-1001-5816-ba58-abceded86403',
'word_count': 270,
'uri': 'nyt://article/fc06e5d1-1001-5816-ba58-abceded86403'}],
[{'abstract': 'DS Smith of Britain has agreed to buy a packaging unit of Svenska Cellulosa of Sweden for $2 billion to expand its market share in Europe.',
'web_url': 'https://dealbook.nytimes.com/2012/01/17/british-maker-of-recycled-packaging-in-2-billion-deal/',
'snippet': 'DS Smith of Britain has agreed to buy a packaging unit of Svenska Cellulosa of Sweden for $2 billion to expand its market share in Europe.',
'lead_paragraph': 'LONDON – DS Smith, a British maker of recycled packaging, agreed on Tuesday to buy a packaging unit of Svenska Cellulosa of Sweden for $2 billion to expand its market share in Europe.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'British Maker of Recycled Packaging in $2 Billion Deal',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Containers and Packaging',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Mergers, Acquisitions and Divestitures',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'Europe', 'rank': 3, 'major': 'N'}],
'pub_date': '2012-01-17T12:08:18+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Julia Werdigier',
'person': [{'firstname': 'Julia',
'middlename': None,
'lastname': 'Werdigier',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d455e943-ce5c-513d-bf74-3e4d0792e566',
'word_count': 244,
'uri': 'nyt://article/d455e943-ce5c-513d-bf74-3e4d0792e566'},
{'abstract': 'If you’d like to use your iPad as a cookbook, there are ways to keep it clean and dry while cooking.',
'web_url': 'https://gadgetwise.blogs.nytimes.com/2011/05/17/how-to-protect-the-ipad-in-the-kitchen/',
'snippet': 'If you’d like to use your iPad as a cookbook, there are ways to keep it clean and dry while cooking.',
'lead_paragraph': 'The tablet computer, with those wonderful apps that display recipes and color pictures, is one of the best new kitchen tools. But if you cook like Julia Child did — splashing the bouillabaisse and tossing the flour all over the counter— there is no way you’d bring it into the kitchen. An iPad, after all, doesn’t rinse off like a cutting board. Moisture is its chief enemy.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'How to Protect the iPad in the Kitchen',
'kicker': 'Gadgetwise',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Cooking and Cookbooks',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'iPad', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Kitchens', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Tablet Computers', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-05-17T23:35:27+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'subsection_name': 'Personal Tech',
'byline': {'original': 'By Damon Darlin',
'person': [{'firstname': 'Damon',
'middlename': None,
'lastname': 'Darlin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/fb6e2580-388c-53e1-8d05-8b19642ef1f0',
'word_count': 282,
'uri': 'nyt://article/fb6e2580-388c-53e1-8d05-8b19642ef1f0'},
{'abstract': 'A 3-year-old is accused of screaming in a woman’s ear, allegedly causing bleeding and hearing loss.',
'web_url': 'https://parenting.blogs.nytimes.com/2010/07/27/a-screaming-child-on-a-plane/',
'snippet': 'A 3-year-old is accused of screaming in a woman’s ear, allegedly causing bleeding and hearing loss.',
'lead_paragraph': 'Sometimes it feels as if my job is to chronicle stories of children misbehaving (or not) on airplanes. A flight attendant telling a mother to give her child Benadryl. Or asking a toddler to leave the plane. An airline losing children who are flying solo. A mother entertaining a cranky baby cross country. Or changing a diaper on a seat because there are no changing tables in the restroom.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'A Screaming Child on a Plane',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-07-27T20:29:08+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/73f12272-8382-541c-96f7-e8d8937c89f3',
'word_count': 292,
'uri': 'nyt://article/73f12272-8382-541c-96f7-e8d8937c89f3'},
{'abstract': 'After a run-up of several months, Japan’s stock market headed back down in late May before rebounding again. The roller-coaster ride has left many investors in a quandary.',
'web_url': 'https://www.nytimes.com/2013/07/14/your-money/japanese-stocks-trying-to-return-to-high-gear.html',
'snippet': 'After a run-up of several months, Japan’s stock market headed back down in late May before rebounding again. The roller-coaster ride has left many investors in a quandary.',
'lead_paragraph': 'DURING a blistering run from last November through May — in which Japan’s stock prices nearly doubled on signs that its economy was finally reflating — the blueprint for success in that market seemed simple.',
'print_section': 'BU',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/07/14/business/14-FUND2/14-FUND2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-articleLarge.jpg',
'height': 440,
'width': 600,
'legacy': {'xlarge': 'images/2013/07/14/business/14-FUND2/14-FUND2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 440},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-blog480.jpg',
'height': 352,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-blog427.jpg',
'height': 313,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-tmagArticle.jpg',
'height': 434,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-jumbo.jpg',
'height': 751,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-blog225.jpg',
'height': 165,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-master675.jpg',
'height': 495,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-master180.jpg',
'height': 132,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-popup.jpg',
'height': 477,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-blog533.jpg',
'height': 391,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-tmagSF.jpg',
'height': 265,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-slide.jpg',
'height': 440,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-superJumbo.jpg',
'height': 1501,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-master1050.jpg',
'height': 770,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-master495.jpg',
'height': 363,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-articleInline.jpg',
'height': 139,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-hpSmall.jpg',
'height': 119,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-blogSmallInline.jpg',
'height': 111,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-mediumFlexible177.jpg',
'height': 130,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/07/14/business/14-FUND2/14-FUND2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/14/business/14-FUND2/14-FUND2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Japanese Stocks, Trying to Return to High Gear',
'kicker': None,
'content_kicker': None,
'print_headline': 'Japanese Stocks, Trying To Return to High Gear',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Stocks and Bonds',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Japan', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Yen (Currency)', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Quantitative Easing',
'rank': 5,
'major': 'N'}],
'pub_date': '2013-07-13T18:19:37+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Your Money',
'byline': {'original': 'By Paul J. Lim',
'person': [{'firstname': 'Paul',
'middlename': 'J.',
'lastname': 'Lim',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ecf58319-2fe8-5fc0-9633-2255af522aaa',
'word_count': 1074,
'uri': 'nyt://article/ecf58319-2fe8-5fc0-9633-2255af522aaa'},
{'abstract': 'From a blister-filled trek to an ill-timed diaper leak to a dinner-deck collapse, here are reader tales of travel gone awry.',
'web_url': 'https://www.nytimes.com/interactive/2014/07/11/travel/travel-misadventures.html',
'snippet': 'From a blister-filled trek to an ill-timed diaper leak to a dinner-deck collapse, here are reader tales of travel gone awry.',
'lead_paragraph': 'From a blister-filled trek to an ill-timed diaper leak to a dinner-deck collapse, here are reader tales of travel gone awry.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-blog427.jpg',
'height': 320,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-jumbo.jpg',
'height': 365,
'width': 487,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-blog225.jpg',
'height': 169,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-master180.jpg',
'height': 135,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-popup.jpg',
'height': 365,
'width': 487,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-tmagSF.jpg',
'height': 271,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-slide.jpg',
'height': 365,
'width': 487,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-superJumbo.jpg',
'height': 365,
'width': 487,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-master315.jpg',
'height': 236,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-articleInline.jpg',
'height': 142,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-hpSmall.jpg',
'height': 122,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-blogSmallInline.jpg',
'height': 113,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-sfSpan.jpg',
'height': 296,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-largeHorizontal375.jpg',
'height': 281,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/11/travel/reader-misadventure-pic/reader-misadventure-pic-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Your Travel Misadventures',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'}],
'pub_date': '2014-07-11T16:07:50+0000',
'document_type': 'multimedia',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/a0556db1-92dc-5a0b-a142-fd8f4d76cb48',
'word_count': 0,
'uri': 'nyt://interactive/a0556db1-92dc-5a0b-a142-fd8f4d76cb48'},
{'abstract': 'How to prepare a child for the new additions at security checkpoints during Thanksgiving travel?',
'web_url': 'https://parenting.blogs.nytimes.com/2010/11/23/good-touch-bad-touch-t-s-a-touch/',
'snippet': 'How to prepare a child for the new additions at security checkpoints during Thanksgiving travel?',
'lead_paragraph': 'As parents of young children prepare to join the throngs at the nation’s airports on the upcoming Mother of All Travel Days, there’s a new complication. In addition to remembering to pack snacks and toys and diapers, worrying about changing those diapers on a plane with no table in the restroom, and averting the glares of other travelers as your own toddler melts down, now there is another potential obstacle between you and your turkey — the new T.S.A. screening procedures.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Good Touch, Bad Touch, T.S.A. Touch',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Airports',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Security and Warning Systems',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Transportation Security Administration',
'rank': 5,
'major': 'N'}],
'pub_date': '2010-11-23T16:58:27+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/f6e0a781-7f7b-502b-aebb-397b4c3c837f',
'word_count': 697,
'uri': 'nyt://article/f6e0a781-7f7b-502b-aebb-397b4c3c837f'},
{'abstract': 'The Consumer Product Safety Commission is divided over an online database of potential product problems.',
'web_url': 'https://www.nytimes.com/2010/11/24/business/24consumer.html',
'snippet': 'The Consumer Product Safety Commission is divided over an online database of potential product problems.',
'lead_paragraph': 'For decades, the Consumer Product Safety Commission has gathered a trove of complaints about potentially dangerous products, from cribs to Chinese-made drywall. But for the most part, the information has not been made public because of a federal law that requires a manufacturer’s approval before it can be released.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/24/business/24consumer-span/24consumer-span-articleLarge.jpg',
'height': 350,
'width': 600,
'legacy': {'xlarge': 'images/2010/11/24/business/24consumer-span/24consumer-span-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 350},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/24/business/24consumer-span/24consumer-span-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/24/business/24consumer-span/24consumer-span-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/24/business/24consumer-span/24consumer-span-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/24/business/24consumer-span/24consumer-span-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/24/business/24consumer-span/24consumer-span-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/11/24/business/24consumer-span/24consumer-span-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Partisan Rift Mires Product Safety Database Plan',
'kicker': None,
'content_kicker': None,
'print_headline': 'Deep Divisions as Vote Nears on Consumer Product Safety Database',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Consumer Federation of America',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Weintraub, Rachel', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Nord, Nancy A', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Consumer Product Safety Commission',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Law and Legislation',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Consumers Union',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Consumer Protection',
'rank': 7,
'major': 'N'}],
'pub_date': '2010-11-23T18:44:15+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Andrew Martin',
'person': [{'firstname': 'Andrew',
'middlename': None,
'lastname': 'Martin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8a74e868-f3c9-5123-810d-c1be812e67c1',
'word_count': 1158,
'uri': 'nyt://article/8a74e868-f3c9-5123-810d-c1be812e67c1'},
{'abstract': 'Butler Coach Brad Stevens is only 33, but Duke’s Mike Krzyzewski says Stevens is a much better coach than he was at that age.',
'web_url': 'https://thequad.blogs.nytimes.com/2010/04/04/stevens-proves-to-be-a-quick-study/',
'snippet': 'Butler Coach Brad Stevens is only 33, but Duke’s Mike Krzyzewski says Stevens is a much better coach than he was at that age.',
'lead_paragraph': 'INDIANAPOLIS — Butler Coach Brad Stevens is 33, and less than 10 years ago was one day from starting training at Applebee’s when he landed a job as Butler’s director of basketball operations. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Stevens Proves to Be a Quick Study',
'kicker': 'The Quad',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-04-05T01:46:39+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'subsection_name': 'Pro Basketball',
'byline': {'original': 'By Pete Thamel',
'person': [{'firstname': 'Pete',
'middlename': None,
'lastname': 'Thamel',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/e02d4a0c-c07b-5b07-b9db-441b44973030',
'word_count': 255,
'uri': 'nyt://article/e02d4a0c-c07b-5b07-b9db-441b44973030'},
{'abstract': 'The Swedish hygiene and paper products company plans to combine its own consumer operations with the European tissue business of Georgia-Pacific.',
'web_url': 'https://dealbook.nytimes.com/2011/11/10/swedens-sca-to-pay-1-8-billion-for-georgia-pacifics-tissue-business-in-europe/',
'snippet': 'The Swedish hygiene and paper products company plans to combine its own consumer operations with the European tissue business of Georgia-Pacific.',
'lead_paragraph': 'LONDON — The Swedish hygiene and paper company SCA announced plans on Thursday to acquire the European tissue business of Georgia-Pacific for $1.8 billion.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'SCA of Sweden to Buy Georgia-Pacific Unit for $1.8 Billion',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-11-10T11:01:20+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Mark Scott',
'person': [{'firstname': 'Mark',
'middlename': None,
'lastname': 'Scott',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/11b2e27d-7f4c-5414-a96d-3280aa7e5d18',
'word_count': 235,
'uri': 'nyt://article/11b2e27d-7f4c-5414-a96d-3280aa7e5d18'},
{'abstract': 'The consumer goods giant Procter & Gamble reported strong demand for products like dishwashing detergent, disinfectants and cough suppressants, causing revenue to rise 4 percent to $17.7 billion in its fourth quarter, while net income rose to $2.8 billion from a loss of $5.2 billion a year earlier.',
'web_url': 'https://www.nytimes.com/2020/07/30/business/coronabeards-aside-procter-gamble-saw-strong-sales.html',
'snippet': '',
'lead_paragraph': 'The consumer goods giant Procter & Gamble reported strong demand for products like dishwashing detergent, disinfectants and cough suppressants, causing revenue to rise 4 percent to $17.7 billion in its fourth quarter, while net income rose to $2.8 billion from a loss of $5.2 billion a year earlier.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/merlin_166705026_7aabcb29-3452-4e2b-b65a-675b63c8e4eb-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/merlin_166705026_7aabcb29-3452-4e2b-b65a-675b63c8e4eb-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/merlin_166705026_7aabcb29-3452-4e2b-b65a-675b63c8e4eb-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/merlin_166705026_7aabcb29-3452-4e2b-b65a-675b63c8e4eb-horizontalMediumAt2X.jpg',
'height': 3528,
'width': 5292,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-threeByTwoLargeAt2X.jpg',
'height': 2822,
'width': 4232,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-articleInline.jpg',
'height': 128,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-hpSmall.jpg',
'height': 110,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-blogSmallInline.jpg',
'height': 102,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mediumFlexible177.jpg',
'height': 120,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/30/business/30markets-brf-ads/30markets-brf-ads-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '“Coronabeards” aside, Procter & Gamble saw strong sales.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2020-07-30T14:02:28+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Tiffany Hsu',
'person': [{'firstname': 'Tiffany',
'middlename': None,
'lastname': 'Hsu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/207e0d76-1736-5090-ab77-3027519e36a4',
'word_count': 253,
'uri': 'nyt://article/207e0d76-1736-5090-ab77-3027519e36a4'}],
[{'abstract': 'Members of Grace Baptist Church, many of them now homeless, gathered on Sunday and described daring escapes from the fire.',
'web_url': 'https://www.nytimes.com/2023/08/14/us/lahaina-church-hawaii-wildfires.html',
'snippet': 'Members of Grace Baptist Church, many of them now homeless, gathered on Sunday and described daring escapes from the fire.',
'lead_paragraph': 'The pastor Arza Brown had long told the congregants of Grace Baptist Church that if they left the sanctuary and gathered beneath Lahaina’s mango trees, that then their church would be under the mangoes, too.',
'print_section': 'A',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/multimedia/13-NAT-HAWAII-CHURCH--01-jbfl/13-NAT-HAWAII-CHURCH--01-jbfl-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Its Building Destroyed, a Lahaina Church Finds Sanctuary in a Cafe',
'kicker': None,
'content_kicker': None,
'print_headline': 'After Fires, Lahaina Church Finds Sanctuary in a Cafe',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fires and Firefighters',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Churches (Buildings)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Coffeehouses', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Wildfires', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Hawaii', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'Lahaina (Hawaii)',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Maui (Hawaii)', 'rank': 7, 'major': 'N'}],
'pub_date': '2023-08-14T09:01:16+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Mitch Smith',
'person': [{'firstname': 'Mitch',
'middlename': None,
'lastname': 'Smith',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/244e2609-4052-5105-b9e6-83f82127092d',
'word_count': 752,
'uri': 'nyt://article/244e2609-4052-5105-b9e6-83f82127092d'},
{'abstract': 'Lynne Tillman’s taut memoir of caring for an aging parent runs an emotional gamut.',
'web_url': 'https://www.nytimes.com/2022/08/08/books/review/mothercare-lynne-tillman.html',
'snippet': 'Lynne Tillman’s taut memoir of caring for an aging parent runs an emotional gamut.',
'lead_paragraph': 'With the rights of mothers and would-be mothers and would-rather-not-be mothers first under threat, and now under open ambush, who can blame writers and publishers for voting with their offerings? Mothers are having a moment. Novels about mothers, memoirs by and about them, essays on mothering with and without trauma, with or without dollops of white space between paragraphs. Mothers for most every palate. Yet the observant reader will probably have noticed that mothers have never been in short supply. Every idiot seems to have one.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-articleLarge.jpg',
'height': 750,
'width': 600,
'legacy': {'xlarge': 'images/2022/08/02/books/review/02Davis/02Davis-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 750},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-popup.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-blog480.jpg',
'height': 600,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-blog533.jpg',
'height': 666,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-blog427.jpg',
'height': 534,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-tmagSF.jpg',
'height': 453,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-tmagArticle.jpg',
'height': 740,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-slide.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-jumbo.jpg',
'height': 1024,
'width': 820,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-superJumbo.jpg',
'height': 1300,
'width': 1040,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-blog225.jpg',
'height': 281,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-master675.jpg',
'height': 844,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-master495.jpg',
'height': 619,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-master180.jpg',
'height': 225,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-master315.jpg',
'height': 394,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-master768.jpg',
'height': 960,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/08/02/books/review/02Davis/02Davis-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumSquareAt3X.jpg',
'height': 1040,
'width': 1040,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-horizontalMediumAt2X.jpg',
'height': 694,
'width': 1040,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/08/02/books/review/02Davis/02Davis-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-threeByTwoLargeAt2X.jpg',
'height': 693,
'width': 1040,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-threeByTwoMediumAt2X.jpg',
'height': 693,
'width': 1040,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-articleInline.jpg',
'height': 238,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-hpSmall.jpg',
'height': 204,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-blogSmallInline.jpg',
'height': 189,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mediumFlexible177.jpg',
'height': 221,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-videoSixteenByNineJumbo1600.jpg',
'height': 585,
'width': 1040,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-facebookJumbo.jpg',
'height': 544,
'width': 1040,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/02/books/review/02Davis/02Davis-mobileMasterAt3x.jpg',
'height': 1300,
'width': 1040,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'An Argument for Calling Your Mother',
'kicker': 'NONFICTION',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Tillman, Lynne',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 4, 'major': 'N'},
{'name': 'creative_works',
'value': 'Mothercare: On Obligation, Love, Death, and Ambivalence (Book)',
'rank': 8,
'major': 'N'}],
'pub_date': '2022-08-08T19:30:06+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Jeremy M. Davies',
'person': [{'firstname': 'Jeremy',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/caa92fd6-a0fe-56c9-8408-d018e7b5fcab',
'word_count': 709,
'uri': 'nyt://article/caa92fd6-a0fe-56c9-8408-d018e7b5fcab'},
{'abstract': 'Robert Machoian and Rodrigo Ojeda-Beck’s drama creates a seemingly oblivious world of make-believe, goofing off and hanging out after a mother distressingly drives off.',
'web_url': 'https://www.nytimes.com/2015/08/07/movies/review-god-bless-the-child-follows-neglected-siblings-at-play.html',
'snippet': 'Robert Machoian and Rodrigo Ojeda-Beck’s drama creates a seemingly oblivious world of make-believe, goofing off and hanging out after a mother distressingly drives off.',
'lead_paragraph': 'Directed by Robert Machoian and Rodrigo Ojeda-Beck, “God Bless the Child” poignantly illustrates what busy, tired parents have told bored offspring for years: You have to make your own fun. This extraordinary movie immerses us in the playtime of five California siblings abandoned to their own devices.',
'print_section': 'C',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-articleLarge.jpg',
'height': 374,
'width': 600,
'legacy': {'xlarge': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 374},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-blog480.jpg',
'height': 300,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-blog427.jpg',
'height': 266,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-tmagArticle.jpg',
'height': 369,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-jumbo.jpg',
'height': 639,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-blog225.jpg',
'height': 140,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-master675.jpg',
'height': 421,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-master180.jpg',
'height': 112,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-popup.jpg',
'height': 406,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-blog533.jpg',
'height': 333,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-tmagSF.jpg',
'height': 226,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-slide.jpg',
'height': 374,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-superJumbo.jpg',
'height': 1278,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-master1050.jpg',
'height': 655,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-master495.jpg',
'height': 309,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-master315.jpg',
'height': 197,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-articleInline.jpg',
'height': 119,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-hpSmall.jpg',
'height': 102,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-blogSmallInline.jpg',
'height': 94,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-mediumFlexible177.jpg',
'height': 110,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/07/arts/07GODBLESS/07GODBLESS-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Review: ‘God Bless the Child’ Follows Neglected Siblings at Play',
'kicker': None,
'content_kicker': None,
'print_headline': 'Review: ‘God Bless the Child’ Follows Neglected Siblings at Play',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Machoian, Robert', 'rank': 2, 'major': 'N'},
{'name': 'persons',
'value': 'Ojeda-Beck, Rodrigo',
'rank': 3,
'major': 'N'}],
'pub_date': '2015-08-06T23:15:32+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Nicolas Rapold',
'person': [{'firstname': 'Nicolas',
'middlename': None,
'lastname': 'Rapold',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/e47f083b-8bab-594c-8d6a-a891111410e0',
'word_count': 267,
'uri': 'nyt://article/e47f083b-8bab-594c-8d6a-a891111410e0'},
{'abstract': 'He could heal a fragmented nation.',
'web_url': 'https://www.nytimes.com/2020/02/27/opinion/sunday/pete-buttigieg-2020.html',
'snippet': 'He could heal a fragmented nation.',
'lead_paragraph': 'In different circles at different points over the past year, it has been fashionable to hate Pete Buttigieg: He’s too clearly full of himself. He’s too far ahead of himself. What business does the 38-year-old former mayor of a relatively small city have running for president? What real claim to the job?',
'print_section': 'SR',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-superJumbo.jpg',
'height': 2048,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-horizontalMediumAt2X.jpg',
'height': 1600,
'width': 2400,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-threeByTwoLargeAt2X.jpg',
'height': 1440,
'width': 2161,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/01/opinion/sunday/01bruni-candidates/01bruni-candidates-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'The Case for Pete Buttigieg',
'kicker': None,
'content_kicker': None,
'print_headline': 'Frank Bruni on Pete Buttigieg',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Democratic Party',
'rank': 3,
'major': 'N'},
{'name': 'persons',
'value': 'Buttigieg, Pete (1982- )',
'rank': 4,
'major': 'N'}],
'pub_date': '2020-02-27T10:00:22+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By Frank Bruni',
'person': [{'firstname': 'Frank',
'middlename': None,
'lastname': 'Bruni',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/a5d63599-9872-5998-aa55-870c6546ff5b',
'word_count': 735,
'uri': 'nyt://article/a5d63599-9872-5998-aa55-870c6546ff5b'},
{'abstract': 'The mayor of Yuma, Ariz., has declared a state of emergency, saying the number of migrants being released from Customs and Border Protection facilities is overwhelming the city.',
'web_url': 'https://www.nytimes.com/2019/04/16/us/yuma-migrants-emergency-border.html',
'snippet': 'The mayor of Yuma, Ariz., has declared a state of emergency, saying the number of migrants being released from Customs and Border Protection facilities is overwhelming the city.',
'lead_paragraph': '[Read the latest edition of Crossing the Border, a limited-run newsletter about life where the United States and Mexico meet. Sign up here to receive the next issue in your inbox.]',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/04/16/us/16yuma1/16yuma1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-superJumbo.jpg',
'height': 1348,
'width': 2023,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/04/16/us/16yuma1/16yuma1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-horizontalMediumAt2X.jpg',
'height': 1348,
'width': 2023,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/04/16/us/16yuma1/16yuma1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-threeByTwoLargeAt2X.jpg',
'height': 1348,
'width': 2023,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/16/us/16yuma1/16yuma1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Yuma Declares Emergency in Bid for Help Handling Surge in Migrants',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Illegal Immigration',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Yuma (Ariz)', 'rank': 2, 'major': 'N'},
{'name': 'persons',
'value': 'Nicholls, Douglas J',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Border Patrol (US)',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-04-17T03:32:30+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Miriam Jordan',
'person': [{'firstname': 'Miriam',
'middlename': None,
'lastname': 'Jordan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/fca5cb1e-c1d8-514c-ad50-0b6fd6701f9f',
'word_count': 781,
'uri': 'nyt://article/fca5cb1e-c1d8-514c-ad50-0b6fd6701f9f'},
{'abstract': 'Were you on Billy Bratton’s wavelength?',
'web_url': 'https://www.nytimes.com/2024/06/20/crosswords/daily-puzzle-2024-06-21.html',
'snippet': 'Were you on Billy Bratton’s wavelength?',
'lead_paragraph': 'Jump to: Tricky Clues',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-superJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumSquareAt3X.jpg',
'height': 683,
'width': 683,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-horizontalMediumAt2X.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-threeByTwoLargeAt2X.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-threeByTwoMediumAt2X.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-videoSixteenByNineJumbo1600.jpg',
'height': 575,
'width': 1024,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-facebookJumbo.jpg',
'height': 535,
'width': 1024,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-mobileMasterAt3x.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/21/crosswords/21wordplay-tailor/21wordplay-tailor-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'Suits From Around the Globe',
'kicker': 'wordplay, the crossword column',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Crossword Puzzles',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Games', 'rank': 2, 'major': 'N'}],
'pub_date': '2024-06-21T02:00:08+0000',
'document_type': 'article',
'news_desk': 'Games',
'section_name': 'Crosswords & Games',
'byline': {'original': 'By Deb Amlen',
'person': [{'firstname': 'Deb',
'middlename': None,
'lastname': 'Amlen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ba96d895-b585-5d93-9afc-c10eac8930fa',
'word_count': 830,
'uri': 'nyt://article/ba96d895-b585-5d93-9afc-c10eac8930fa'},
{'abstract': 'After a peaceful march veered out of control, an image of a fleeing woman and two children in diapers outraged critics of President Trump’s policies.',
'web_url': 'https://www.nytimes.com/2018/11/26/world/americas/tear-gas-migrant-children-photo.html',
'snippet': 'After a peaceful march veered out of control, an image of a fleeing woman and two children in diapers outraged critics of President Trump’s policies.',
'lead_paragraph': 'In the photograph, a woman clutches two children in diapers, one of them barefoot, as they run from a smoking tear gas canister fired by American border officials.',
'print_section': 'A',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/11/27/world/27xp-photo/27xp-photo-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-popup-v2.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-blog533-v2.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-tmagSF-v2.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-superJumbo-v2.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-master1050-v2.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-master768-v2.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/11/27/world/27xp-photo/27xp-photo-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-sfSpan-v2.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-horizontalMediumAt2X-v2.jpg',
'height': 2335,
'width': 3500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/11/27/world/27xp-photo/27xp-photo-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-threeByTwoLargeAt2X-v2.jpg',
'height': 2335,
'width': 3500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-threeByTwoMediumAt2X-v2.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/11/27/world/27xp-photo/27xp-photo-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Reuters Photojournalist Talks About Photo of Children Fleeing Tear Gas at Border in Mexico',
'kicker': None,
'content_kicker': None,
'print_headline': 'Image of Tear-Gassed Migrants Stirs Ire',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Illegal Immigration',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Asylum, Right of', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Tear Gas', 'rank': 3, 'major': 'N'}],
'pub_date': '2018-11-26T22:52:39+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By Niraj Chokshi',
'person': [{'firstname': 'Niraj',
'middlename': None,
'lastname': 'Chokshi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/68a62f94-9183-5b44-840a-8b45faf9f07a',
'word_count': 722,
'uri': 'nyt://article/68a62f94-9183-5b44-840a-8b45faf9f07a'},
{'abstract': 'Links to children’s lives in India, a debate on school segregation, and a comedian’s last word on Time’s “Are You Mom Enough” cover.',
'web_url': 'https://parenting.blogs.nytimes.com/2012/05/22/reading-and-thinking-links-worth-talking-about/',
'snippet': 'Links to children’s lives in India, a debate on school segregation, and a comedian’s last word on Time’s “Are You Mom Enough” cover.',
'lead_paragraph': 'This week, I interviewed mothers in India by phone about the challenges of getting their children vaccinated for an upcoming post — from a seat by the green at the local college, gazing at mowed lawns and relaxing students. Here’s more reason not to take our comforts for granted:',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Reading and Thinking: Links Worth Talking About',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-05-22T14:46:53+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': "By Kj Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/65bce728-6ef7-518b-959b-ecc54b4f2d03',
'word_count': 247,
'uri': 'nyt://article/65bce728-6ef7-518b-959b-ecc54b4f2d03'},
{'abstract': 'We took a two-bedroom apartment hoping to fill it with a crib and diapers and toys for a baby — not with the needles and pills and vitamins I need for in vitro fertilization.',
'web_url': 'https://parenting.blogs.nytimes.com/2013/09/10/fertility-diary-pincushion/',
'snippet': 'We took a two-bedroom apartment hoping to fill it with a crib and diapers and toys for a baby — not with the needles and pills and vitamins I need for in vitro fertilization.',
'lead_paragraph': 'My stomach looks as if it were used for target practice. ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-watch308.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-watch268.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-facebookJumbo.jpg',
'height': 299,
'width': 570,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-blog480.jpg',
'height': 479,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-blog427.jpg',
'height': 426,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-jumbo.jpg',
'height': 569,
'width': 570,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-popup.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-blog533.jpg',
'height': 532,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-tmagSF.jpg',
'height': 361,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-slide.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-superJumbo.jpg',
'height': 569,
'width': 570,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-master495.jpg',
'height': 494,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/07/style/motherlode-booties/motherlode-booties-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Fertility Diary: Pincushion',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'In Vitro Fertilization',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Infertility', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-09-10T13:54:46+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Amy Klein',
'person': [{'firstname': 'Amy',
'middlename': None,
'lastname': 'Klein',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c7216718-be61-5077-a835-aa4c3869f777',
'word_count': 806,
'uri': 'nyt://article/c7216718-be61-5077-a835-aa4c3869f777'},
{'abstract': 'Thanks to bright young fans like Alexa Chung and Keira Knightley, the London-based designer Kiely is enjoying some well-deserved celebrity on her home turf.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2011/06/13/now-arriving-orla-kiely/',
'snippet': 'Thanks to bright young fans like Alexa Chung and Keira Knightley, the London-based designer Kiely is enjoying some well-deserved celebrity on her home turf.',
'lead_paragraph': 'On this side of the Atlantic, Orla Kiely is best known for her instantly recognizable leaf-print bags, which hang on strollers from Brooklyn to Santa Monica. But the Irish-born, London-based designer makes much more than just mummy-friendly diaper bags. She also has home décor and ready-to-wear lines, both of which feature cheerful graphics and mod silhouettes. And while it’s taken a while, London hipsters have finally lit upon her her clothing designs, which make references to the Chelsea girl charm of Mary Quant, Julie Christie and Jean Shrimpton. Thanks to bright young fans like Alexa Chung and Keira Knightley, Kiely is enjoying some well-deserved celebrity on her home turf. It helps, of course, that she has a bevy of cool girls working for her. Venetia Scott, the Marc Jacobs stylist-turned-photographer, shoots her ad campaigns, and Leith Clark, the Canadian editor of the British indie fashion magazine Lula, styles them. Her first American store is set to open in SoHo in September. In anticipation, Kiely’s hosting an event at the Ace Hotel tomorrow night. Chung will D.J. and Mercedes Heinwein’s short film about the fall collection, which was inspired by Tippi Hedren’s wardrobe in “The Birds,” will be screened. Describing her recent success, which she’s hoping to replicate in the United States, Kiely is as well mannered and ladylike as her neat blouses and primly tailored coats. “Oh, gosh, I’ve really just been enjoying it,” she says. “I hope Americans like the clothes, too.”',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Now Arriving | Orla Kiely',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-06-13T22:20:18+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'T Magazine',
'byline': {'original': 'By Nancy MacDonell',
'person': [{'firstname': 'Nancy',
'middlename': None,
'lastname': 'MacDonell',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ca3f5ccf-8a24-5974-ab69-6e95355362f5',
'word_count': 255,
'uri': 'nyt://article/ca3f5ccf-8a24-5974-ab69-6e95355362f5'}],
[{'abstract': 'Giving baby a bath without harming that delicate skin is one more minefield for new parents to traverse. Here are a few tips.',
'web_url': 'https://www.nytimes.com/article/bathe-newborn-baby.html',
'snippet': 'Giving baby a bath without harming that delicate skin is one more minefield for new parents to traverse. Here are a few tips.',
'lead_paragraph': 'When you bring your baby home, you also bring home a bundle of new questions. Everyone has different opinions on the best way to do everything when it comes to raising babies; even a simple question like, “How often should I bathe this kid?” can turn into a heated debate. To help you navigate the minefield of parenting advice, I spoke to a few experts to get the dirt on keeping baby clean.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-articleLarge.jpg',
'height': 401,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 401},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-slide.jpg',
'height': 401,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-jumbo.jpg',
'height': 684,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-superJumbo.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-master675.jpg',
'height': 451,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-master768.jpg',
'height': 513,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-horizontalMediumAt2X.jpg',
'height': 3416,
'width': 5128,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-threeByTwoLargeAt2X.jpg',
'height': 3416,
'width': 5128,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/4cff66cd7cae4675a42dcb96a78e867d-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/11/multimedia/bathe-baby/bathe-baby-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How Often Should I Bathe My Baby?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Skin', 'rank': 1, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Bathing and Showering',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'National Institutes of Health',
'rank': 6,
'major': 'N'}],
'pub_date': '2020-04-13T21:05:28+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Baby',
'byline': {'original': 'By Kristi Pahr',
'person': [{'firstname': 'Kristi',
'middlename': None,
'lastname': 'Pahr',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/34fd4b58-2f74-5ab3-bc8b-e25adcad682b',
'word_count': 1143,
'uri': 'nyt://article/34fd4b58-2f74-5ab3-bc8b-e25adcad682b'},
{'abstract': 'A linguistic plague is creeping through the nation’s capital — the “bacronym,” where a PAC or bill name is chosen so that the initial letters of each word form a desired word.',
'web_url': 'https://fivethirtyeight.blogs.nytimes.com/2012/05/19/the-most-powerful-special-interest-in-washington-the-acronym/',
'snippet': 'A linguistic plague is creeping through the nation’s capital — the “bacronym,” where a PAC or bill name is chosen so that the initial letters of each word form a desired word.',
'lead_paragraph': 'We are interuppting FiveThirtyEight’s regular data-driven analysis for an important public service announcement:',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Most Powerful Special Interest in Washington: The Acronym',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-05-19T20:39:11+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Micah Cohen',
'person': [{'firstname': 'Micah',
'middlename': None,
'lastname': 'Cohen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b046a93e-6cef-5b5b-bd5d-d867b20f694f',
'word_count': 665,
'uri': 'nyt://article/b046a93e-6cef-5b5b-bd5d-d867b20f694f'},
{'abstract': 'Bristol Palin asks teens to hit the pause button before sex.',
'web_url': 'https://thecaucus.blogs.nytimes.com/2010/04/07/pause-bristol-palin-and-teen-pregnancy/',
'snippet': 'Bristol Palin asks teens to hit the pause button before sex.',
'lead_paragraph': 'Bristol Palin, the daughter of former Gov. Sarah Palin of Alaska and herself a mom, has made a public service announcement for the Candie’s Foundation that asks teens to think twice before they have sex.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Pause: Bristol Palin and Teen Pregnancy',
'kicker': 'The Caucus',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-04-07T21:15:15+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Maria Newman',
'person': [{'firstname': 'Maria',
'middlename': None,
'lastname': 'Newman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/c7402ed5-1231-598a-9e0c-fdaa0879a012',
'word_count': 282,
'uri': 'nyt://article/c7402ed5-1231-598a-9e0c-fdaa0879a012'},
{'abstract': 'Are concerns over milk powder shortages and mainlanders’ shopping sprees symptoms of a wider malaise?',
'web_url': 'https://rendezvous.blogs.nytimes.com/2013/02/11/mainlander-shoppers-met-with-protests-in-hong-kong/',
'snippet': 'Are concerns over milk powder shortages and mainlanders’ shopping sprees symptoms of a wider malaise?',
'lead_paragraph': 'HONG KONG—There is little to distinguish Sheung Shui from the many suburbs studded with high-rises and elevated walkways that dot the northern parts of Hong Kong, except for one thing: It is the first stop on the local train link that comes in from the nearby border with mainland China.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-articleLarge.jpg',
'height': 428,
'width': 600,
'legacy': {'xlarge': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 428},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-blog480.jpg',
'height': 342,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-blog427.jpg',
'height': 304,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-tmagArticle.jpg',
'height': 422,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-jumbo.jpg',
'height': 730,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-popup.jpg',
'height': 463,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-blog533.jpg',
'height': 380,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-tmagSF.jpg',
'height': 258,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-slide.jpg',
'height': 428,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-superJumbo.jpg',
'height': 1460,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-articleInline.jpg',
'height': 135,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-hpSmall.jpg',
'height': 116,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-blogSmallInline.jpg',
'height': 108,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/blogs/11rdv-hongkong-art/11rdv-hongkong-art-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Mainlander Shoppers Met With Protests in Hong Kong',
'kicker': 'IHT Rendezvous',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Infant Formulas',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'New Year', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Hong Kong', 'rank': 4, 'major': 'N'},
{'name': 'glocations',
'value': 'Shenzhen (China)',
'rank': 5,
'major': 'N'}],
'pub_date': '2013-02-12T01:02:50+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'World',
'byline': {'original': 'By Bettina Wassener',
'person': [{'firstname': 'Bettina',
'middlename': None,
'lastname': 'Wassener',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/51232d74-b057-510b-9e21-22b9aca4242a',
'word_count': 683,
'uri': 'nyt://article/51232d74-b057-510b-9e21-22b9aca4242a'},
{'abstract': 'Cotton farmers in Texas suffered record losses amid heat and drought last year, new data shows. It’s an example of how global warming is a “secret driver of inflation.”',
'web_url': 'https://www.nytimes.com/2023/02/18/climate/climate-change-cotton-tampons.html',
'snippet': 'Cotton farmers in Texas suffered record losses amid heat and drought last year, new data shows. It’s an example of how global warming is a “secret driver of inflation.”',
'lead_paragraph': 'To hear more audio stories from publications like The New York Times, download Audm for iPhone or Android.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-articleLarge.jpg',
'height': 450,
'width': 600,
'legacy': {'xlarge': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 450},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-popup.jpg',
'height': 488,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-blog533.jpg',
'height': 400,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-blog427.jpg',
'height': 320,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-tmagSF.jpg',
'height': 272,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-tmagArticle.jpg',
'height': 444,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-slide.jpg',
'height': 450,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-jumbo.jpg',
'height': 768,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-superJumbo.jpg',
'height': 1536,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-blog225.jpg',
'height': 169,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-master1050.jpg',
'height': 788,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-master675.jpg',
'height': 506,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-master495.jpg',
'height': 371,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-master180.jpg',
'height': 135,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-master315.jpg',
'height': 236,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-master768.jpg',
'height': 576,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-sfSpan-v2.jpg',
'height': 316,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-largeHorizontal375-v2.jpg',
'height': 300,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-largeHorizontalJumbo-v2.jpg',
'height': 819,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-horizontalMediumAt2X-v2.jpg',
'height': 3340,
'width': 4175,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-threeByTwoLargeAt2X.jpg',
'height': 3334,
'width': 5000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-articleInline.jpg',
'height': 143,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-hpSmall.jpg',
'height': 122,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-blogSmallInline.jpg',
'height': 113,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/15/multimedia/00cli-cotton-01-mljf/00cli-cotton-01-mljf-mobileMasterAt3x.jpg',
'height': 1350,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How Climate Change Is Making Tampons (and Lots of Other Stuff) More Expensive',
'kicker': None,
'content_kicker': None,
'print_headline': 'Climate Change Withers Cotton, And Prices Soar',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Global Warming',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Drought', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Heat and Heat Waves',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Cotton', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Agriculture and Farming',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Inflation (Economics)',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Textiles', 'rank': 8, 'major': 'N'},
{'name': 'subject', 'value': 'Irrigation', 'rank': 9, 'major': 'N'},
{'name': 'glocations',
'value': 'Ogallala Aquifer',
'rank': 10,
'major': 'N'},
{'name': 'glocations', 'value': 'Texas', 'rank': 11, 'major': 'N'},
{'name': 'subject', 'value': 'Menstruation', 'rank': 13, 'major': 'N'},
{'name': 'subject',
'value': 'Cosmetics and Toiletries',
'rank': 14,
'major': 'N'},
{'name': 'subject', 'value': 'Diapers', 'rank': 15, 'major': 'N'},
{'name': 'subject',
'value': 'Greenhouse Gas Emissions',
'rank': 16,
'major': 'N'},
{'name': 'subject',
'value': 'audio-neutral-informative',
'rank': 17,
'major': 'N'}],
'pub_date': '2023-02-18T10:00:26+0000',
'document_type': 'article',
'news_desk': 'Climate',
'section_name': 'Climate',
'byline': {'original': 'By Coral Davenport',
'person': [{'firstname': 'Coral',
'middlename': None,
'lastname': 'Davenport',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d5f77dcd-219f-54c5-abb4-7735478755f2',
'word_count': 1720,
'uri': 'nyt://article/d5f77dcd-219f-54c5-abb4-7735478755f2'},
{'abstract': 'Welcome to the Mütter Museum — home to pickled organs and the answers to life’s enduring mysteries.',
'web_url': 'https://www.nytimes.com/2011/07/17/magazine/you-are-here-philadelphias-freaky-museum.html',
'snippet': 'Welcome to the Mütter Museum — home to pickled organs and the answers to life’s enduring mysteries.',
'lead_paragraph': 'One summer Sunday years ago in Philadelphia, I stumbled onto the Mütter Museum. Back then maybe a few hundred people a year bothered to visit. A new director would soon parade human hairballs, pickled organs and Victorian surgical equipment from the museum’s collection on “Late Night With David Letterman,” and after that the Mütter joined institutions like the Metropolitan Museum of Art and the Liberace Museum in Las Vegas as beloved American attractions. But that Sunday it was still empty and neglected, a little forbidding from the outside.',
'print_section': 'MM',
'print_page': '15',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/17/magazine/17here_map/17here_map-jumbo-v2.jpg',
'height': 834,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/17/magazine/17here_map/17here_map-popup-v2.jpg',
'height': 530,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/17/magazine/17here_map/17here_map-articleInline.jpg',
'height': 130,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/07/17/magazine/17here_map/17here_map-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/07/17/magazine/17here_map/17here_map-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Human Hairballs ’R’ Us',
'kicker': 'You Are Here',
'content_kicker': None,
'print_headline': 'Human Hairballs ’R’ Us',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Museums',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Philadelphia (Pa)',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Mutter Museum',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-07-15T16:00:37+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Michael Kimmelman',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Kimmelman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3924cf47-b7e5-56f9-844c-8b75dacca462',
'word_count': 723,
'uri': 'nyt://article/3924cf47-b7e5-56f9-844c-8b75dacca462'},
{'abstract': 'Thieves are using skimmers to drain millions in food stamps and other public benefits from the neediest Americans.',
'web_url': 'https://www.nytimes.com/2024/05/04/business/food-stamps-skimming-scam.html',
'snippet': 'Thieves are using skimmers to drain millions in food stamps and other public benefits from the neediest Americans.',
'lead_paragraph': 'Something was very wrong with Jackie Kirks’s food stamp card.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-articleLarge.jpg',
'height': 420,
'width': 600,
'legacy': {'xlarge': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 420},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-popup.jpg',
'height': 455,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-blog480.jpg',
'height': 336,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-blog533.jpg',
'height': 373,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-blog427.jpg',
'height': 299,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-tmagSF.jpg',
'height': 253,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-tmagArticle.jpg',
'height': 414,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-slide.jpg',
'height': 420,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-jumbo.jpg',
'height': 717,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-superJumbo.jpg',
'height': 1434,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-blog225.jpg',
'height': 158,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-master1050.jpg',
'height': 735,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-master675.jpg',
'height': 473,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-master495.jpg',
'height': 347,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-master180.jpg',
'height': 126,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-master315.jpg',
'height': 221,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-master768.jpg',
'height': 538,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-articleInline.jpg',
'height': 133,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-hpSmall.jpg',
'height': 114,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-blogSmallInline.jpg',
'height': 106,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mediumFlexible177.jpg',
'height': 124,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/22/business/00snap-skimming/00snap-skimming-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'How Scammers Are Stealing Food Stamps From Struggling Americans',
'kicker': None,
'content_kicker': None,
'print_headline': 'Scammers Skimming Food Stamp Cards',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Food Stamps',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Frauds and Swindling',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Automated Teller Machines',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Poverty', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Personal Finances', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'internal-truncator',
'rank': 7,
'major': 'N'}],
'pub_date': '2024-05-04T09:02:42+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Jessica Fu',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Fu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e72aa4fa-69ed-530a-b983-04bbd2ce361e',
'word_count': 1560,
'uri': 'nyt://article/e72aa4fa-69ed-530a-b983-04bbd2ce361e'},
{'abstract': 'Investigators said that hundreds of further arrests may yet follow after international police teams revealed this week what they described as the biggest online pedophile network uncovered so far.',
'web_url': 'https://www.nytimes.com/2011/03/18/world/europe/18iht-child18.html',
'snippet': 'Investigators said that hundreds of further arrests may yet follow after international police teams revealed this week what they described as the biggest online pedophile network uncovered so far.',
'lead_paragraph': 'PARIS — When international police teams revealed this week what they described as the biggest online pedophile network uncovered so far, the numbers were staggering: 670 suspects, 230 rescued children and 184 arrests across 30 countries.',
'print_section': 'A',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'More Arrests Likely in Pedophile Raid',
'kicker': 'World Brefing | Europe',
'content_kicker': None,
'print_headline': 'European Police Arrest 184 in Pedophile Network',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sex Crimes',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'Europe', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Police', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Child Abuse and Neglect',
'rank': 5,
'major': 'N'}],
'pub_date': '2011-03-17T20:39:00+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Katrin Bennhold',
'person': [{'firstname': 'Katrin',
'middlename': None,
'lastname': 'Bennhold',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4bc6dd85-e74b-564f-a4e0-90548fbd2c28',
'word_count': 671,
'uri': 'nyt://article/4bc6dd85-e74b-564f-a4e0-90548fbd2c28'},
{'abstract': 'All the fashion news of the week that’s fit to reprint.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2011/03/25/chic-in-review-designer-scrubs-stat/',
'snippet': 'All the fashion news of the week that’s fit to reprint.',
'lead_paragraph': 'All the fashion news of the week that’s fit to reprint.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Chic in Review | Liz Taylor, RIP',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-03-25T22:00:10+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'T Magazine',
'byline': {'original': 'By Sarah Leon',
'person': [{'firstname': 'Sarah',
'middlename': None,
'lastname': 'Leon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/7041b06f-a530-5993-a250-7c6104d6c7b5',
'word_count': 233,
'uri': 'nyt://article/7041b06f-a530-5993-a250-7c6104d6c7b5'},
{'abstract': 'You’ve planned for college in 18 years, but how about the electric bill this month?',
'web_url': 'https://parenting.blogs.nytimes.com/2011/03/02/unexpected-costs-of-kids/',
'snippet': 'You’ve planned for college in 18 years, but how about the electric bill this month?',
'lead_paragraph': 'Children are expensive. As a financial reporter, blogger and author of the Dollars and Sense column over at sfgate.com, Lisa Schmeiser knew that. Really. And she thought she was prepared.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Unexpected Costs of Kids',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-03-02T16:30:40+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/b75e4d86-46c5-512e-b556-4d32a7f27691',
'word_count': 305,
'uri': 'nyt://article/b75e4d86-46c5-512e-b556-4d32a7f27691'}],
[{'abstract': 'Did you calculate the cost of having children before you took the leap?',
'web_url': 'https://parenting.blogs.nytimes.com/2010/07/08/budgeting-for-a-child/',
'snippet': 'Did you calculate the cost of having children before you took the leap?',
'lead_paragraph': 'After the government last month\xa0released its annual tally of what it costs to raise a child to age 18 ($222,360), I received an e-mail message from a reader, A., who is looking for advice on how to find a more practical number. That lump sum is interesting as a conversation starter, she says, but it isn’t much help in trying to budget for an actual child.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Budgeting for a Child',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-07-08T13:14:25+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/673e29d7-a77a-5a7f-b732-db96684c4925',
'word_count': 756,
'uri': 'nyt://article/673e29d7-a77a-5a7f-b732-db96684c4925'},
{'abstract': 'Scientists are increasingly interested in what might be called animal sanitation studies — how different species seek to stay clean and get rid of wastes.',
'web_url': 'https://www.nytimes.com/2015/05/26/science/natures-waste-management-crews.html',
'snippet': 'Scientists are increasingly interested in what might be called animal sanitation studies — how different species seek to stay clean and get rid of wastes.',
'lead_paragraph': 'One of the biggest mistakes my husband made as a new father was to tell me he thought his diaper-changing technique was better than mine. From then on, guess who assumed the lion’s share of diaper patrol in our household?',
'print_section': 'D',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-articleLarge.jpg',
'height': 578,
'width': 600,
'legacy': {'xlarge': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 578},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-blog480.jpg',
'height': 462,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-blog427.jpg',
'height': 411,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-tmagArticle.jpg',
'height': 570,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-jumbo.jpg',
'height': 986,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-blog225.jpg',
'height': 217,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-master675.jpg',
'height': 650,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-master180.jpg',
'height': 173,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-popup.jpg',
'height': 500,
'width': 520,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-blog533.jpg',
'height': 513,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-tmagSF.jpg',
'height': 349,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-slide.jpg',
'height': 500,
'width': 520,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-superJumbo.jpg',
'height': 1973,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-master1050.jpg',
'height': 1011,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-master495.jpg',
'height': 477,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-master315.jpg',
'height': 303,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-articleInline.jpg',
'height': 183,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-hpSmall.jpg',
'height': 157,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-blogSmallInline.jpg',
'height': 145,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-mediumFlexible177.jpg',
'height': 170,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/26/science/26NESTSJP1/26NESTSJP1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Nature’s Waste Management Crews',
'kicker': 'Basics',
'content_kicker': None,
'print_headline': 'Tidying Up the Wild',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hygiene and Cleanliness',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Animals', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Feces', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Birds', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Insects', 'rank': 7, 'major': 'N'},
{'name': 'organizations',
'value': 'Animal Behaviour (Journal)',
'rank': 8,
'major': 'N'}],
'pub_date': '2015-05-25T20:21:37+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Science',
'byline': {'original': 'By Natalie Angier',
'person': [{'firstname': 'Natalie',
'middlename': None,
'lastname': 'Angier',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d845cf76-be8a-5f10-b362-d131f6a9b885',
'word_count': 1180,
'uri': 'nyt://article/d845cf76-be8a-5f10-b362-d131f6a9b885'},
{'abstract': 'Brian Lee, a Web entrepreneur, has been partnering with celebrities like Jessica Alba to create e-commerce sites to sell products in ways that were not possible just a few years ago.',
'web_url': 'https://www.nytimes.com/2012/11/26/technology/building-start-ups-using-stars-ties-to-fans.html',
'snippet': 'Brian Lee, a Web entrepreneur, has been partnering with celebrities like Jessica Alba to create e-commerce sites to sell products in ways that were not possible just a few years ago.',
'lead_paragraph': 'You might have heard Jessica Alba on daytime TV talking about her new e-commerce company, which sells diapers and other baby supplies, or seen Kim Kardashian pitching her online shoe store in the tabloids. ',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2012/11/26/business/celebrityjump/celebrityjump-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-blog480.jpg',
'height': 384,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-jumbo.jpg',
'height': 820,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-popup.jpg',
'height': 521,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-superJumbo.jpg',
'height': 1640,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/11/26/business/celebrityjump/celebrityjump-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/26/business/celebrityjump/celebrityjump-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Building Start-Ups via Stars’ Ties to Fans',
'kicker': None,
'content_kicker': None,
'print_headline': 'Building Start-Ups Via Stars’ Ties to Fans',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Lee, Brian S',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Kardashian, Kim', 'rank': 2, 'major': 'N'},
{'name': 'organizations', 'value': 'Honest Co', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Social Networking (Internet)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'ShoeDazzle.com',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Celebrities', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Venture Capital', 'rank': 8, 'major': 'N'},
{'name': 'persons', 'value': 'ALBA, JESSICA', 'rank': 9, 'major': 'N'}],
'pub_date': '2012-11-26T02:22:48+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2a0b2687-5d8f-57f3-9816-1f5681846761',
'word_count': 1103,
'uri': 'nyt://article/2a0b2687-5d8f-57f3-9816-1f5681846761'},
{'abstract': 'A report of a strong smell was received by the New York Fire Department on Friday morning; officials could not confirm the source of it.',
'web_url': 'https://www.nytimes.com/2015/08/29/nyregion/harsh-odor-wafts-over-staten-island-baffling-residents.html',
'snippet': 'A report of a strong smell was received by the New York Fire Department on Friday morning; officials could not confirm the source of it.',
'lead_paragraph': 'Cataloging the city’s summertime smells — taxis’ exhaust, perfumes and bodega flowers, to name a few — can nearly be considered a New Yorker’s pastime. On Friday, residents all over Staten Island were trying to determine the origins of a fouler smell.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Harsh Odor Wafts Over Staten Island, Baffling Residents',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Smells and Odors',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Staten Island (NYC)',
'rank': 2,
'major': 'N'}],
'pub_date': '2015-08-28T19:23:07+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Katie Rogers',
'person': [{'firstname': 'Katie',
'middlename': None,
'lastname': 'Rogers',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/069bf0f9-2699-550e-842a-3e05de5a5e32',
'word_count': 328,
'uri': 'nyt://article/069bf0f9-2699-550e-842a-3e05de5a5e32'},
{'abstract': 'Infants may fail to develop a healthy mixture of intestinal bacteria if they are delivered by Caesarean section or do not drink breast milk, researchers report.',
'web_url': 'https://www.nytimes.com/2013/02/26/science/breast-milk-promotes-healthy-gut-bacteria-in-babies-study-says.html',
'snippet': 'Infants may fail to develop a healthy mixture of intestinal bacteria if they are delivered by Caesarean section or do not drink breast milk, researchers report.',
'lead_paragraph': 'Infants may fail to develop a healthy mixture of intestinal bacteria if they are delivered by Caesarean section or do not drink breast milk, researchers are reporting.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Healthy Bacteria in Babies',
'kicker': 'Observatory',
'content_kicker': None,
'print_headline': 'Healthy Bacteria in Babies',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Bacteria',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Research', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Intestinal Tract', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Caesarean Section', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 6, 'major': 'N'}],
'pub_date': '2013-02-25T18:16:46+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Science',
'byline': {'original': 'By Douglas Quenqua',
'person': [{'firstname': 'Douglas',
'middlename': None,
'lastname': 'Quenqua',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bacde4d2-2277-5fc0-ba56-2c816c761efd',
'word_count': 291,
'uri': 'nyt://article/bacde4d2-2277-5fc0-ba56-2c816c761efd'},
{'abstract': 'Plus: Cross-border couples in limbo.',
'web_url': 'https://www.nytimes.com/2020/07/10/fashion/weddings/love-letter-newsletter-glimpse-into-sons-mind.html',
'snippet': 'Plus: Cross-border couples in limbo.',
'lead_paragraph': 'Paige Martin Reynolds’s son loved bags: purses, diaper bags, suitcases, reusable grocery bags, backpacks. He also loved packing bags, filling them with anything that interested him: paperwork, produce, jewelry, juice boxes, coasters, coins.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-articleLarge-v2.png',
'height': 604,
'width': 600,
'legacy': {'xlarge': 'images/2019/09/25/fashion/loveletter/loveletter-articleLarge-v2.png',
'xlargewidth': 600,
'xlargeheight': 604},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-popup-v2.png',
'height': 500,
'width': 497,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-blog480-v2.png',
'height': 483,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-blog533-v2.png',
'height': 537,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-blog427-v2.png',
'height': 430,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-tmagSF-v2.png',
'height': 364,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-tmagArticle-v2.png',
'height': 596,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-slide-v2.png',
'height': 500,
'width': 497,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-jumbo-v2.png',
'height': 1024,
'width': 1018,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-superJumbo-v2.png',
'height': 1057,
'width': 1050,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-blog225-v2.png',
'height': 227,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-master1050-v2.png',
'height': 1057,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-master675-v2.png',
'height': 680,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-master495-v2.png',
'height': 498,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-master180-v2.png',
'height': 181,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-master315-v2.png',
'height': 317,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-master768-v2.png',
'height': 773,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-thumbStandard-v2.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/09/25/fashion/loveletter/loveletter-thumbStandard-v2.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-blogSmallThumb-v2.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-thumbLarge-v2.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-smallSquare168-v2.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-smallSquare252-v2.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-square320-v2.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-moth-v2.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-filmstrip-v2.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-square640-v2.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mediumSquare149-v2.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-sfSpan-v4.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-largeHorizontal375-v4.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-largeHorizontalJumbo-v4.png',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-horizontalMediumAt2X-v4.png',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-hpLarge-v4.png',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-largeWidescreen573-v4.png',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-largeWidescreen1050-v3.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-thumbWide-v4.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/09/25/fashion/loveletter/loveletter-thumbWide-v4.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoThumb-v4.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoLarge-v3.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mediumThreeByTwo210-v4.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mediumThreeByTwo225-v4.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mediumThreeByTwo440-v4.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mediumThreeByTwo252-v4.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mediumThreeByTwo378-v4.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-threeByTwoLargeAt2X-v4.png',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-threeByTwoMediumAt2X-v4.png',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-threeByTwoSmallAt2X-v4.png',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-articleInline-v2.png',
'height': 191,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-hpSmall-v2.png',
'height': 164,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-blogSmallInline-v2.png',
'height': 152,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mediumFlexible177-v2.png',
'height': 178,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSmall-v3.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoHpMedium-v3.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine600-v3.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine540-v3.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine495-v3.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine390-v3.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine1050-v3.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine480-v3.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine310-v3.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine225-v3.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine96-v3.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine768-v3.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNine150-v3.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-videoSixteenByNineJumbo1600-v3.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-miniMoth-v4.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-windowsTile336H-v3.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-facebookJumbo-v4.png',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-watch308-v2.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-watch268-v2.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/25/fashion/loveletter/loveletter-mobileMasterAt3x-v2.png',
'height': 1057,
'width': 1050,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Love Letter: A Glimpse Into a Son’s Mind',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Modern Love (Times Column)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Dating and Relationships',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Marriages', 'rank': 3, 'major': 'N'}],
'pub_date': '2020-07-10T18:30:04+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'subsection_name': 'Weddings',
'byline': {'original': 'By Miya Lee',
'person': [{'firstname': 'Miya',
'middlename': None,
'lastname': 'Lee',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2f88fab4-4b28-57ea-8006-d2b2c18d8825',
'word_count': 291,
'uri': 'nyt://article/2f88fab4-4b28-57ea-8006-d2b2c18d8825'},
{'abstract': 'The Web site DisneyBaby.com is part of the company’s emphasis on expanding its reach to the parents of infants.',
'web_url': 'https://mediadecoder.blogs.nytimes.com/2012/01/17/disney-embraces-social-commerce-in-pursuit-of-baby-business/',
'snippet': 'The Web site DisneyBaby.com is part of the company’s emphasis on expanding its reach to the parents of infants.',
'lead_paragraph': 'The Walt Disney Company is continuing its march toward the crib.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Disney Embraces ‘Social Commerce’ in Pursuit of Baby Business',
'kicker': 'Media Decoder',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Babble Media Inc',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Disney Channel',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Walt Disney Company',
'rank': 5,
'major': 'N'}],
'pub_date': '2012-01-17T15:00:21+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Brooks Barnes',
'person': [{'firstname': 'Brooks',
'middlename': None,
'lastname': 'Barnes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/caafb94f-e649-5c25-b713-16df0585b1f2',
'word_count': 292,
'uri': 'nyt://article/caafb94f-e649-5c25-b713-16df0585b1f2'},
{'abstract': 'We read the retail coverage looking for trends in spending and … the American way of shopping.',
'web_url': 'https://mediadecoder.blogs.nytimes.com/2011/11/28/on-black-friday-pepper-spray-carried-the-day/',
'snippet': 'We read the retail coverage looking for trends in spending and … the American way of shopping.',
'lead_paragraph': 'Each year, retail reporters are expected to step to Black Friday, that hardy perennial of trend stories, and find a fresh angle. (Before the opening gong even sounded, we learned that $395,000 Ferraris were hot and Wal-Mart was not.)',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'On Black Friday, Pepper Spray Carried the Day',
'kicker': 'Media Decoder',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Black Friday (Shopping)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Wal-Mart Stores Inc',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-11-28T14:00:24+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By David Carr',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Carr',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cdd0b14e-40d7-5240-b21b-134245f044cf',
'word_count': 321,
'uri': 'nyt://article/cdd0b14e-40d7-5240-b21b-134245f044cf'},
{'abstract': 'Monologue | Monday night on “The Jay Leno Show” on NBC: President Obama made a surprise visit to Afghanistan this past weekend. I guess after the last 14 months in Washington, he wanted to go someplace where there was less fighting.',
'web_url': 'https://laughlines.blogs.nytimes.com/2010/03/30/pretty-quick-trip/',
'snippet': 'Monologue | Monday night on “The Jay Leno Show” on NBC: President Obama made a surprise visit to Afghanistan this past weekend. I guess after the last 14 months in Washington, he wanted to go someplace where there was less fighting.',
'lead_paragraph': 'Monologue | Monday night on “The Tonight Show With Jay Leno” on NBC: President Obama made a surprise visit to Afghanistan this past weekend. I guess after the last 14 months in Washington, he wanted to go someplace where there was less fighting. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': '‘Pretty Quick Trip’',
'kicker': 'Laugh Lines',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-03-30T14:24:32+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Week in Review',
'byline': {'original': 'By Alan Lee',
'person': [{'firstname': 'Alan',
'middlename': None,
'lastname': 'Lee',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/8ef1f37e-44db-540c-8b2e-f1f9142be109',
'word_count': 292,
'uri': 'nyt://article/8ef1f37e-44db-540c-8b2e-f1f9142be109'},
{'abstract': 'Chad Hedrick’s daughter has taken her first steps. And that’s just for starters.',
'web_url': 'https://vancouver2010.blogs.nytimes.com/2010/02/20/an-eventful-games-for-hedrick/',
'snippet': 'Chad Hedrick’s daughter has taken her first steps. And that’s just for starters.',
'lead_paragraph': 'RICHMOND, British Columbia — Since the XXI Winter Olympics have begun, Chad Hedrick’s 11-month-old daughter, Hadley, has said “Da-Da” for the first time and taken her first steps.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'An Eventful Games for Hedrick',
'kicker': 'Vancouver 2010',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-02-20T12:00:11+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'subsection_name': 'Olympics',
'byline': {'original': 'By Karen Crouse',
'person': [{'firstname': 'Karen',
'middlename': None,
'lastname': 'Crouse',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/8436419e-ffa5-5193-b2b4-c56b9d603398',
'word_count': 292,
'uri': 'nyt://article/8436419e-ffa5-5193-b2b4-c56b9d603398'}],
[{'abstract': 'Fisher-Price says it will soon offer a tiny touch-screen computer for tots.',
'web_url': 'https://bits.blogs.nytimes.com/2010/02/16/an-ipad-for-the-preschool-set-the-fisher-price-ixl/',
'snippet': 'Fisher-Price says it will soon offer a tiny touch-screen computer for tots.',
'lead_paragraph': 'In a self-promotional moment reminiscent of the Apple chief Steven P. Jobs, Robert Eckert, the chief executive of Mattel, is celebrating one of his company’s own products as “the hottest toy for the 2010 holiday season” — even though it’s not even on sale yet.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'An iPad for the Preschool Set: The Fisher-Price iXL',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Computers and the Internet',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'iPad', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'SESAME STREET', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Software', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Toys', 'rank': 5, 'major': 'N'},
{'name': 'organizations', 'value': 'Apple Inc', 'rank': 6, 'major': 'N'},
{'name': 'organizations',
'value': 'Fisher-Price Inc',
'rank': 7,
'major': 'N'},
{'name': 'organizations', 'value': 'Nokia Oyj', 'rank': 8, 'major': 'N'},
{'name': 'organizations',
'value': 'Sesame Workshop',
'rank': 9,
'major': 'N'}],
'pub_date': '2010-02-16T17:25:28+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Ashlee Vance',
'person': [{'firstname': 'Ashlee',
'middlename': None,
'lastname': 'Vance',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/fbc4f8d8-b8f9-5f54-8fea-8afccff304b3',
'word_count': 263,
'uri': 'nyt://article/fbc4f8d8-b8f9-5f54-8fea-8afccff304b3'},
{'abstract': 'People from all types of backgrounds have become stars — and it’s a trend that’s expected to get even bigger and make them even richer in years to come.',
'web_url': 'https://www.nytimes.com/2023/12/06/business/dealbook/influencer-creator-economy.html',
'snippet': 'People from all types of backgrounds have become stars — and it’s a trend that’s expected to get even bigger and make them even richer in years to come.',
'lead_paragraph': 'Barney Banks shot a cute video of himself changing his son’s diaper. His mother-in-law suggested he post it to TikTok. His partner agreed. So he did.',
'print_section': 'F',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-horizontalMediumAt2X.jpg',
'height': 2533,
'width': 3800,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-threeByTwoLargeAt2X.jpg',
'height': 2533,
'width': 3800,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/07/multimedia/07sp-dealbook-advance-creator-pqcb/07sp-dealbook-advance-creator-pqcb-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'In the Creator Economy, There Is Money to Be Made',
'kicker': None,
'content_kicker': None,
'print_headline': 'Oh, the Money They Make',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Public Relations and Publicity',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Social Media', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Student Athlete Compensation',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'College Athletics', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Video Recordings, Downloads and Streaming',
'rank': 7,
'major': 'N'}],
'pub_date': '2023-12-06T20:52:07+0000',
'document_type': 'article',
'news_desk': 'SpecialSections',
'section_name': 'Business Day',
'subsection_name': 'DealBook',
'byline': {'original': 'By Paul Sullivan',
'person': [{'firstname': 'Paul',
'middlename': None,
'lastname': 'Sullivan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9256c744-453e-5bb4-acc7-2081b7a2144b',
'word_count': 1286,
'uri': 'nyt://article/9256c744-453e-5bb4-acc7-2081b7a2144b'},
{'abstract': 'The Congressional Dads Caucus makes savvy use of its own faint goofiness.',
'web_url': 'https://www.nytimes.com/2023/02/22/magazine/congressional-dad-caucus.html',
'snippet': 'The Congressional Dads Caucus makes savvy use of its own faint goofiness.',
'lead_paragraph': 'You can’t hear Jimmy Gomez too well in the wide-angle C-SPAN footage. You can’t see him very well either, until the camera starts to zoom in. The congressman from Southern California is standing in the House, next to Representative Alexandria Ocasio-Cortez. Slung on his chest, crumpling his standard-issue Washington suit, is a young gentleman named Hodge, his infant son. Hodge is admirably well behaved, his fuzzy head bobbing as his father smiles and shouts out his House leadership vote: “On behalf of my son Hodge and all the working families who need an expanded Child Tax Credit — Hakeem Jeffries!” Few of his colleagues are paying attention; Gomez even feels the need to wiggle Hodge’s legs to indicate that his son is present. The whole thing is a classic dad scenario: big buildup, stiff commitment to the bit, tepid response.',
'print_section': 'MM',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-articleLarge-v2.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-blog480-v2.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-blog533-v2.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-blog427-v2.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-tmagArticle-v2.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-slide-v2.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-jumbo-v2.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-superJumbo-v2.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-master1050-v2.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-master675-v2.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-master495-v2.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-master768-v2.jpg',
'height': 511,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumSquareAt3X-v2.jpg',
'height': 1740,
'width': 1743,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-largeHorizontalJumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-horizontalMediumAt2X-v2.jpg',
'height': 1740,
'width': 2614,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-largeWidescreen1050-v2.jpg',
'height': 589,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-threeByTwoLargeAt2X-v2.jpg',
'height': 1740,
'width': 2615,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-threeByTwoMediumAt2X-v2.jpg',
'height': 998,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-threeByTwoSmallAt2X-v2.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-articleInline-v2.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-hpSmall-v2.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-blogSmallInline-v2.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoSixteenByNineJumbo1600-v2.jpg',
'height': 898,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-facebookJumbo-v2.jpg',
'height': 548,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-verticalTwoByThree735-v2.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/26/magazine/26mag-screenland/26mag-screenland-mobileMasterAt3x-v2.jpg',
'height': 1198,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Modern Dads Are Embarrassing. Which Just Might Be Good Politics.',
'kicker': 'Screenland',
'content_kicker': None,
'print_headline': 'Pop Group',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Gomez, Jimmy (1974- )',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Family Leaves', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Men and Boys', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'Washington (DC)',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'Carlson, Tucker', 'rank': 7, 'major': 'N'},
{'name': 'persons',
'value': 'Hawley, Josh D (1979- )',
'rank': 8,
'major': 'N'},
{'name': 'persons',
'value': 'Walsh, Matt (1964- )',
'rank': 9,
'major': 'N'}],
'pub_date': '2023-02-22T10:00:15+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Phillip Maciak',
'person': [{'firstname': 'Phillip',
'middlename': None,
'lastname': 'Maciak',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d22ebd09-01ad-5cd9-abfd-7b2de355b5ca',
'word_count': 1278,
'uri': 'nyt://article/d22ebd09-01ad-5cd9-abfd-7b2de355b5ca'},
{'abstract': 'The Trump administration says it is transferring the children back to a shelter in Clint, Tex., that had seen hundreds of children held in overcrowded and filthy conditions.',
'web_url': 'https://www.nytimes.com/2019/06/25/us/john-sanders-cbp.html',
'snippet': 'The Trump administration says it is transferring the children back to a shelter in Clint, Tex., that had seen hundreds of children held in overcrowded and filthy conditions.',
'lead_paragraph': 'CLINT, Tex. — At the squat, sand-colored concrete border station in Texas that has become the center of debate over President Trump’s immigration policies, a chaotic shuffle of migrant children continued on Tuesday as more than 100 were moved back into a facility that days earlier had been emptied in the midst of criticism that young detainees there were hungry, crying and unwashed.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-articleLarge-v3.jpg',
'height': 377,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-articleLarge-v3.jpg',
'xlargewidth': 600,
'xlargeheight': 377},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-popup-v3.jpg',
'height': 408,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-blog480-v3.jpg',
'height': 301,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-blog533-v3.jpg',
'height': 335,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-blog427-v3.jpg',
'height': 268,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-tmagSF-v3.jpg',
'height': 227,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-tmagArticle-v3.jpg',
'height': 372,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-slide-v3.jpg',
'height': 377,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-jumbo-v3.jpg',
'height': 643,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-superJumbo-v3.jpg',
'height': 1286,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-blog225-v3.jpg',
'height': 141,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-master1050-v3.jpg',
'height': 659,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-master675-v3.jpg',
'height': 424,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-master495-v3.jpg',
'height': 311,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-master180-v3.jpg',
'height': 113,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-master315-v3.jpg',
'height': 198,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-master768-v3.jpg',
'height': 482,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-smallSquare168-v3.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-smallSquare252-v3.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-square320-v3.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-moth-v3.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-filmstrip-v3.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-square640-v3.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-mediumSquare149-v3.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-sfSpan-v4.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-largeHorizontal375-v4.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-largeHorizontalJumbo-v4.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-horizontalMediumAt2X-v4.jpg',
'height': 2988,
'width': 4482,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-hpLarge-v4.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-largeWidescreen573-v4.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-largeWidescreen1050-v4.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-thumbWide-v5.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-thumbWide-v5.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoThumb-v5.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoLarge-v5.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-mediumThreeByTwo210-v5.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-mediumThreeByTwo225-v5.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-mediumThreeByTwo440-v5.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-mediumThreeByTwo252-v5.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-mediumThreeByTwo378-v5.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-threeByTwoLargeAt2X-v5.jpg',
'height': 2935,
'width': 4401,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-threeByTwoMediumAt2X-v5.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-threeByTwoSmallAt2X-v5.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-articleInline-v3.jpg',
'height': 119,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-hpSmall-v3.jpg',
'height': 102,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-blogSmallInline-v3.jpg',
'height': 95,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-mediumFlexible177-v3.jpg',
'height': 111,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSmall-v4.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoHpMedium-v4.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine600-v4.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine540-v4.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine495-v4.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine390-v4.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine1050-v4.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine480-v4.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine310-v4.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine225-v4.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine96-v4.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine3000-v4.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine768-v4.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNine150-v4.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoSixteenByNineJumbo1600-v4.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-miniMoth-v4.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-windowsTile336H-v4.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoFifteenBySeven1305-v4.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-videoFifteenBySeven2610-v4.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-facebookJumbo-v4.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-watch268-v3.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/25/us/25borderkids-01alt-promo/25borderkids-01alt-promo-verticalTwoByThree735-v3.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘We’re in a Dark Place’: Children Returned to Troubled Texas Border Facility',
'kicker': None,
'content_kicker': None,
'print_headline': 'Children Returned to Texas Shelter That Set Off an Outcry',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Sanders, John P',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration Detention',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Clint (Tex)', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Texas', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'Appointments and Executive Changes',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 9, 'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 10,
'major': 'N'}],
'pub_date': '2019-06-25T15:51:41+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Arturo Rubio and Caitlin Dickerson',
'person': [{'firstname': 'Arturo',
'middlename': None,
'lastname': 'Rubio',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Caitlin',
'middlename': None,
'lastname': 'Dickerson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/341c6ec8-88fa-5fe4-9e18-5358dd14d54c',
'word_count': 1179,
'uri': 'nyt://article/341c6ec8-88fa-5fe4-9e18-5358dd14d54c'},
{'abstract': 'Residents have been urging the billionaires and celebrities who own homes on Maui to support relief efforts.',
'web_url': 'https://www.nytimes.com/2023/08/11/us/oprah-maui-fires-shelters.html',
'snippet': 'Residents have been urging the billionaires and celebrities who own homes on Maui to support relief efforts.',
'lead_paragraph': 'Oprah Winfrey, who has been a part-time resident of Maui for more than 15 years, distributed supplies on Thursday at the War Memorial Stadium in Wailuku, which is being used to shelter evacuees from the island’s deadly wildfires.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-horizontalMediumAt2X.jpg',
'height': 3667,
'width': 5500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-threeByTwoLargeAt2X.jpg',
'height': 3667,
'width': 5500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/11/multimedia/11hawaii-blog-oprah-visit-01-gzmk/11hawaii-blog-oprah-visit-01-gzmk-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Oprah Winfrey Distributes Aid at a Maui Shelter',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Wildfires',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'High Net Worth Individuals',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Fires and Firefighters',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Second Homes and Non-Primary Residences',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Evacuations and Evacuees',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Celebrities', 'rank': 6, 'major': 'N'},
{'name': 'persons', 'value': 'Winfrey, Oprah', 'rank': 7, 'major': 'N'},
{'name': 'glocations', 'value': 'Maui (Hawaii)', 'rank': 8, 'major': 'N'}],
'pub_date': '2023-08-11T15:21:13+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Callie Holtermann',
'person': [{'firstname': 'Callie',
'middlename': None,
'lastname': 'Holtermann',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/20cdfe65-5ce8-53f7-8eeb-8d1b5aee471e',
'word_count': 261,
'uri': 'nyt://article/20cdfe65-5ce8-53f7-8eeb-8d1b5aee471e'},
{'abstract': 'Car seats inevitably get messy. They are a mobile chronicle of life with little ones—the pulverized party snacks, that blotch of sunscreen from a day at the beach, those muddy post-soccer-practice shoe prints, a streak of dried spit-up from the bumpy ride to Grandma’s. Attempting to erase these archives can be daunting: Uninstalling the car...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/how-to-clean-a-car-seat/',
'snippet': 'Car seats inevitably get messy. They are a mobile chronicle of life with little ones—the pulverized party snacks, that blotch of sunscreen from a day at the beach, those muddy post-soccer-practice shoe prints, a streak of dried spit-up from the bu...',
'lead_paragraph': 'Car seats inevitably get messy. They are a mobile chronicle of life with little ones—the pulverized party snacks, that blotch of sunscreen from a day at the beach, those muddy post-soccer-practice shoe prints, a streak of dried spit-up from the bumpy ride to Grandma’s. Attempting to erase these archives can be daunting: Uninstalling the car...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/01/cleaneverything-carseats-2048px-3226-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/01/cleaneverything-carseats-2048px-3226-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/01/cleaneverything-carseats-2048px-3226-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2022/01/cleaneverything-carseats-2048px-3226-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'How to Clean a Car Seat',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2022-01-20T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/47edeb88-e271-5249-904e-d2157df9f9b8',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/47edeb88-e271-5249-904e-d2157df9f9b8'},
{'abstract': 'A superhero raises a baby monster in this animated film. But the action is dragged down by talky sequences about parental responsibility.',
'web_url': 'https://www.nytimes.com/2024/06/13/movies/ultraman-rising-review-bringing-up-beastie.html',
'snippet': 'A superhero raises a baby monster in this animated film. But the action is dragged down by talky sequences about parental responsibility.',
'lead_paragraph': 'The lead of “Ultraman: Rising” sure looks like Japan’s iconic red and silver superhero, but fans might have to squint. First introduced in a 1966 TV show about an alien who crashed to Earth, Ultraman is the brainchild of Eiji Tsuburaya, the prolific pop culture titan who also had a talon in the creation of Godzilla and Mothra. Working with Netflix to boost the monster fighter’s international profile, the director Shannon Tindle, who wrote the screenplay with Marc Haimes, puts a too-cute twist on the character, transforming the kaiju brawler into a kaiju father when Ultraman is tasked to raise a 20-foot infant. Baby Gigantron is too big for diapers — and the gases she leaks evacuate city blocks.',
'print_section': 'C',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-articleLarge.jpg',
'height': 255,
'width': 600,
'legacy': {'xlarge': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 255},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-popup.jpg',
'height': 276,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-blog480.jpg',
'height': 204,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-blog533.jpg',
'height': 227,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-blog427.jpg',
'height': 181,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-tmagSF.jpg',
'height': 154,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-tmagArticle.jpg',
'height': 252,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-slide.jpg',
'height': 255,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-jumbo.jpg',
'height': 435,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-superJumbo.jpg',
'height': 870,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-blog225.jpg',
'height': 96,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-master1050.jpg',
'height': 446,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-master675.jpg',
'height': 287,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-master495.jpg',
'height': 210,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-master180.jpg',
'height': 77,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-master315.jpg',
'height': 134,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-master768.jpg',
'height': 326,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-horizontalMediumAt2X.jpg',
'height': 2160,
'width': 3240,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-threeByTwoLargeAt2X.jpg',
'height': 2160,
'width': 3239,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-articleInline.jpg',
'height': 81,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-hpSmall.jpg',
'height': 69,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-blogSmallInline.jpg',
'height': 64,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mediumFlexible177.jpg',
'height': 75,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-mobileMasterAt3x.jpg',
'height': 765,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/06/13/multimedia/13ultraman-review-wpzt/13ultraman-review-wpzt-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': '‘Ultraman: Rising’ Review: Bringing Up Beastie',
'kicker': None,
'content_kicker': None,
'print_headline': 'Ultraman: Rising',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Animated Films',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'Ultraman: Rising (Movie)',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Tindle, Shannon', 'rank': 3, 'major': 'N'}],
'pub_date': '2024-06-13T11:00:20+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Amy Nicholson',
'person': [{'firstname': 'Amy',
'middlename': None,
'lastname': 'Nicholson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/9ab88af4-6c19-58e1-bcb0-42b0e92e9412',
'word_count': 277,
'uri': 'nyt://article/9ab88af4-6c19-58e1-bcb0-42b0e92e9412'},
{'abstract': 'Many organizations are collecting monetary donations and supplies for victims of the flooding.',
'web_url': 'https://www.nytimes.com/2022/07/29/us/kentucky-floods-how-to-help.html',
'snippet': 'Many organizations are collecting monetary donations and supplies for victims of the flooding.',
'lead_paragraph': 'Search-and-rescue efforts continued across much of southeastern Kentucky on Friday after what Gov. Andy Beshear said was “one of the worst, most devastating flooding events” ever to hit the state.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-horizontalMediumAt2X.jpg',
'height': 3600,
'width': 5400,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-threeByTwoLargeAt2X.jpg',
'height': 3600,
'width': 5400,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/merlin_210737784_0790a0cd-7462-4911-8990-cfa16d238d81-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/07/29/us/29flooding-how-to-help01/29flooding-how-to-help01-mobileMasterAt3x.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Here is how to help victims of the flooding in Kentucky.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Floods', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Rescues', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'AMERICAN RED CROSS',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'AGRICULTURE DEPARTMENT',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Kentucky', 'rank': 7, 'major': 'N'},
{'name': 'glocations',
'value': 'APPALACHIAN REGION',
'rank': 8,
'major': 'N'}],
'pub_date': '2022-07-29T17:53:49+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Johnny Diaz',
'person': [{'firstname': 'Johnny',
'middlename': None,
'lastname': 'Diaz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a90b0da7-2b37-530b-962f-b4d444e576ab',
'word_count': 303,
'uri': 'nyt://article/a90b0da7-2b37-530b-962f-b4d444e576ab'},
{'abstract': 'Israel released two videos from inside Gaza’s main children’s hospital that showed weapons and explosives. Gazan health officials denied the hospital was used for military purposes.',
'web_url': 'https://www.nytimes.com/2023/11/14/world/middleeast/israel-hamas-rantisi-hospital-video.html',
'snippet': 'Israel released two videos from inside Gaza’s main children’s hospital that showed weapons and explosives. Gazan health officials denied the hospital was used for military purposes.',
'lead_paragraph': 'Israel is pressing its case that Hamas is using hospitals as cover, releasing a pair of videos from inside Gaza’s main children’s hospital that showed weapons and explosives purportedly found in the medical center, and a room where the military said hostages were kept.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-horizontalMediumAt2X.jpg',
'height': 5153,
'width': 7724,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-threeByTwoLargeAt2X.jpg',
'height': 5153,
'width': 7724,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/11/13/multimedia/13israel-hamas-Hagari-hospital-ctqm/13israel-hamas-Hagari-hospital-ctqm-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Israel Shows Videos of Gaza Hospital Basement It Says Was Used by Hamas',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Gaza Strip',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Israel-Gaza War (2023- )',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Hospitals', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'War and Armed Conflicts',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Propaganda', 'rank': 5, 'major': 'N'},
{'name': 'organizations', 'value': 'Hamas', 'rank': 6, 'major': 'N'}],
'pub_date': '2023-11-14T16:14:08+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Middle East',
'byline': {'original': 'By Matthew Rosenberg and Nadav Gavrielov',
'person': [{'firstname': 'Matthew',
'middlename': None,
'lastname': 'Rosenberg',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Nadav',
'middlename': None,
'lastname': 'Gavrielov',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e51d18ab-1519-5d49-a0b9-39828bf939b7',
'word_count': 890,
'uri': 'nyt://article/e51d18ab-1519-5d49-a0b9-39828bf939b7'},
{'abstract': 'Alarmed by a rapid increase in spending on compounded drugs, like a $1,600 baby balm, insurers and others are acting to control their use.',
'web_url': 'https://www.nytimes.com/2014/08/15/business/pharmacies-turn-drugs-into-profits-pitting-insurers-vs-compounders.html',
'snippet': 'Alarmed by a rapid increase in spending on compounded drugs, like a $1,600 baby balm, insurers and others are acting to control their use.',
'lead_paragraph': 'It may be the biggest thing in diaper rash treatment, a custom-made product to soothe a baby’s bottom at the eye-popping price of $1,600.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/08/15/business/PHARMA/PHARMA-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-articleLarge.jpg',
'height': 559,
'width': 600,
'legacy': {'xlarge': 'images/2014/08/15/business/PHARMA/PHARMA-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 559},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-blog480.jpg',
'height': 447,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-blog427.jpg',
'height': 398,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-tmagArticle.jpg',
'height': 551,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-jumbo.jpg',
'height': 954,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-blog225.jpg',
'height': 210,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-master675.jpg',
'height': 629,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-master180.jpg',
'height': 168,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-popup.jpg',
'height': 500,
'width': 537,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-blog533.jpg',
'height': 496,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-tmagSF.jpg',
'height': 337,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-slide.jpg',
'height': 500,
'width': 537,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-superJumbo.jpg',
'height': 1908,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-master1050.jpg',
'height': 978,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-master495.jpg',
'height': 461,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-master315.jpg',
'height': 293,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-articleInline.jpg',
'height': 177,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-hpSmall.jpg',
'height': 152,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-blogSmallInline.jpg',
'height': 141,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-mediumFlexible177.jpg',
'height': 165,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/08/15/business/PHARMA/PHARMA-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/08/15/business/PHARMA/PHARMA-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Pharmacies Turn Drugs Into Profits, Pitting Insurers vs. Compounders',
'kicker': None,
'content_kicker': None,
'print_headline': 'In the Alchemist’s Lab',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Drugs (Pharmaceuticals)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Health Insurance and Managed Care',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Food and Drug Administration',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Ahmed, Kareem', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Landmark Medical Management',
'rank': 6,
'major': 'N'}],
'pub_date': '2014-08-15T00:37:47+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Andrew Pollack',
'person': [{'firstname': 'Andrew',
'middlename': None,
'lastname': 'Pollack',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f3bb4a5e-63f5-544d-8862-56e5afc11cea',
'word_count': 1241,
'uri': 'nyt://article/f3bb4a5e-63f5-544d-8862-56e5afc11cea'}],
[{'abstract': 'Mark Wahlberg plays a husband and father hiding a secret identity in this breezy, entertaining action-comedy.',
'web_url': 'https://www.nytimes.com/2023/12/14/movies/the-family-plan-review-whos-your-daddy.html',
'snippet': 'Mark Wahlberg plays a husband and father hiding a secret identity in this breezy, entertaining action-comedy.',
'lead_paragraph': '“The Family Plan” has a familiar premise: A seemingly ordinary family man with a clandestine identity is hiding a violent past. It’s been done as farce, in “True Lies,” and as drama, in “A History of Violence,” in both instances to rousing effect. “Family Plan,” starring Mark Wahlberg as the dissembling patriarch, plays it for laughs, using his deception and its unraveling as a springboard for screwball comedy.',
'print_section': 'C',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-articleLarge.jpg',
'height': 251,
'width': 600,
'legacy': {'xlarge': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 251},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-popup.jpg',
'height': 272,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-blog480.jpg',
'height': 201,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-blog533.jpg',
'height': 223,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-blog427.jpg',
'height': 178,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-tmagSF.jpg',
'height': 151,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-tmagArticle.jpg',
'height': 247,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-slide.jpg',
'height': 251,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-jumbo.jpg',
'height': 428,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-superJumbo.jpg',
'height': 855,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-blog225.jpg',
'height': 94,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-master1050.jpg',
'height': 439,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-master675.jpg',
'height': 282,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-master495.jpg',
'height': 207,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-master180.jpg',
'height': 75,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-master315.jpg',
'height': 132,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-master768.jpg',
'height': 321,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumSquareAt3X.jpg',
'height': 1604,
'width': 1604,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-horizontalMediumAt2X.jpg',
'height': 1604,
'width': 2406,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-threeByTwoLargeAt2X.jpg',
'height': 1604,
'width': 2406,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-articleInline.jpg',
'height': 79,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-hpSmall.jpg',
'height': 68,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-blogSmallInline.jpg',
'height': 63,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mediumFlexible177.jpg',
'height': 74,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/12/14/multimedia/14familyplan-review-lqph/14familyplan-review-lqph-mobileMasterAt3x.jpg',
'height': 752,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘The Family Plan’ Review: Who’s Your Daddy?',
'kicker': None,
'content_kicker': None,
'print_headline': 'That’s Daddy. Agent Double-O Daddy.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'The Family Plan (Movie)',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Wahlberg, Mark', 'rank': 3, 'major': 'N'},
{'name': 'persons',
'value': 'Monaghan, Michelle',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Hinds, Ciaran', 'rank': 5, 'major': 'N'}],
'pub_date': '2023-12-15T02:00:09+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Movies',
'byline': {'original': 'By Calum Marsh',
'person': [{'firstname': 'Calum',
'middlename': None,
'lastname': 'Marsh',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/60e5db5f-e376-52c8-b026-8d66fb76c1bf',
'word_count': 289,
'uri': 'nyt://article/60e5db5f-e376-52c8-b026-8d66fb76c1bf'},
{'abstract': 'Jessica Seinfeld, in running her charity, Baby Buggy, which provides baby clothing, gear and services to families in need, has had to surmount the fact that her husband is Jerry.',
'web_url': 'https://www.nytimes.com/2013/11/08/giving/her-name-is-famous-but-shes-not-about-nothing.html',
'snippet': 'Jessica Seinfeld, in running her charity, Baby Buggy, which provides baby clothing, gear and services to families in need, has had to surmount the fact that her husband is Jerry.',
'lead_paragraph': 'YOU expect to see Jessica Seinfeld at fancy galas, turned out in designer gowns and stiletto pumps, smiling for the camera on the arm of her famous husband.',
'print_section': 'F',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/BUGGY-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/08BUGGY_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/11/08/giving/08BUGGY_SPAN/08BUGGY_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/08BUGGY_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/08/giving/08BUGGY_SPAN/08BUGGY_SPAN-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Her Name Is Famous, but She’s Not About Nothing',
'kicker': None,
'content_kicker': None,
'print_headline': 'Her Name Is Famous, but She’s Not About Nothing',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Seinfeld, Jessica',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'organizations', 'value': 'Baby Buggy', 'rank': 5, 'major': 'N'}],
'pub_date': '2013-11-07T22:55:51+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Giving',
'byline': {'original': 'By Robin Pogrebin',
'person': [{'firstname': 'Robin',
'middlename': None,
'lastname': 'Pogrebin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7f67bb2e-64cb-554e-8271-e7d3cd64579f',
'word_count': 1224,
'uri': 'nyt://article/7f67bb2e-64cb-554e-8271-e7d3cd64579f'},
{'abstract': 'My 7-year-old understood the danger of the Trump administration better than I did.',
'web_url': 'https://www.nytimes.com/2018/06/19/opinion/children-border-separated-foster-care-trauma.html',
'snippet': 'My 7-year-old understood the danger of the Trump administration better than I did.',
'lead_paragraph': 'The kids showed up in our driveway on a Tuesday afternoon. The boy wore a backpack full of diapers for his sister; she wore neon-pink tennis shoes and wouldn’t let go of his hand. Their case worker gave me some paperwork and was gone before I had time to process the thought: Now I’m a foster mom. Their panic was palpable. Mine probably was, too.',
'print_section': 'A',
'print_page': '23',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-articleLarge.jpg',
'height': 773,
'width': 600,
'legacy': {'xlarge': 'images/2018/06/19/opinion/19cummins/19cummins-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 773},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-popup.jpg',
'height': 500,
'width': 389,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-blog480.jpg',
'height': 618,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-blog533.jpg',
'height': 687,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-blog427.jpg',
'height': 550,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-tmagSF.jpg',
'height': 466,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-tmagArticle.jpg',
'height': 763,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-slide.jpg',
'height': 500,
'width': 389,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-jumbo.jpg',
'height': 1024,
'width': 795,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-superJumbo.jpg',
'height': 2048,
'width': 1590,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-blog225.jpg',
'height': 290,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-master1050.jpg',
'height': 1353,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-master675.jpg',
'height': 870,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-master495.jpg',
'height': 638,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-master180.jpg',
'height': 232,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-master315.jpg',
'height': 406,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-master768.jpg',
'height': 990,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/06/19/opinion/19cummins/19cummins-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-horizontalMediumAt2X.jpg',
'height': 1010,
'width': 1515,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/06/19/opinion/19cummins/19cummins-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-threeByTwoLargeAt2X.jpg',
'height': 1017,
'width': 1526,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-articleInline.jpg',
'height': 245,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-hpSmall.jpg',
'height': 210,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-blogSmallInline.jpg',
'height': 195,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-mediumFlexible177.jpg',
'height': 228,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/opinion/19cummins/19cummins-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘If It Could Happen to Them, Why Can’t It Happen to Us?’',
'kicker': None,
'content_kicker': None,
'print_headline': '‘If It Could Happen to Them …’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Childhood',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Foster Care', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Family Separation Policy (US Immigration)',
'rank': 7,
'major': 'N'}],
'pub_date': '2018-06-19T22:57:35+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Jeanine Cummins',
'person': [{'firstname': 'Jeanine',
'middlename': None,
'lastname': 'Cummins',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/85fccd9a-ea66-51ef-b30e-52f86acc3700',
'word_count': 846,
'uri': 'nyt://article/85fccd9a-ea66-51ef-b30e-52f86acc3700'},
{'abstract': 'A one-week dose of a probiotic isolated from a healthy infant’s diaper lowered rates of deadly sepsis in babies by 40 percent, researchers report.',
'web_url': 'https://www.nytimes.com/2017/08/21/health/how-to-prevent-deadly-infection-in-babies-good-bacteria.html',
'snippet': 'A one-week dose of a probiotic isolated from a healthy infant’s diaper lowered rates of deadly sepsis in babies by 40 percent, researchers report.',
'lead_paragraph': 'It may be possible, scientists say, to save many thousands of newborns in poor countries by giving them a simple probiotic — a strain of bacteria originally scooped out of the diaper of a healthy baby.',
'print_section': 'D',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-articleInline.jpg',
'height': 101,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-hpSmall.jpg',
'height': 87,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-blogSmallInline.jpg',
'height': 80,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-mediumFlexible177.jpg',
'height': 94,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/08/22/science/22SCI-GLOBAL/22SCI-GLOBAL-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'}],
'headline': {'main': 'How to Prevent Deadly Infection in Babies? Good Bacteria',
'kicker': 'Global Health',
'content_kicker': None,
'print_headline': 'Protected From Bacteria by Bacteria',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Probiotics',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Nature (Journal)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Digestive Tract', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Bacteria', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Sepsis', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Clinical Trials', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Health Foods', 'rank': 8, 'major': 'N'},
{'name': 'glocations', 'value': 'India', 'rank': 9, 'major': 'N'},
{'name': 'persons',
'value': 'Panigrahi, Pinaki',
'rank': 10,
'major': 'N'}],
'pub_date': '2017-08-21T21:50:53+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Donald G. McNeil Jr',
'person': [{'firstname': 'Donald',
'middlename': 'G.',
'lastname': 'McNeil',
'qualifier': 'Jr',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/061f0b90-ee49-5df1-a432-52b9fa033af6',
'word_count': 765,
'uri': 'nyt://article/061f0b90-ee49-5df1-a432-52b9fa033af6'},
{'abstract': 'Some brands seem to have recently discovered that not all men are heterosexual, sex-driven bodybuilders, and are using ads with an updated portrayal of masculinity.',
'web_url': 'https://www.nytimes.com/2017/06/04/business/media/advertising-masculinity.html',
'snippet': 'Some brands seem to have recently discovered that not all men are heterosexual, sex-driven bodybuilders, and are using ads with an updated portrayal of masculinity.',
'lead_paragraph': 'It wasn’t that long ago that commercials for the body spray Axe spoke to a certain type of male fantasy: Guys used the product and women who looked like supermodels flocked to them.',
'print_section': 'B',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoSixteenByNineJumbo1600.jpg',
'height': 827,
'width': 1470,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/06/05/business/05ADCO1/05ADCO1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-articleLarge.jpg',
'height': 396,
'width': 600,
'legacy': {'xlarge': 'images/2017/06/05/business/05ADCO1/05ADCO1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 396},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-blog480.jpg',
'height': 317,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-blog427.jpg',
'height': 282,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-tmagArticle.jpg',
'height': 391,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-jumbo.jpg',
'height': 676,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-blog225.jpg',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-master675.jpg',
'height': 446,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-master180.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-master768.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-popup.jpg',
'height': 429,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-blog533.jpg',
'height': 352,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-tmagSF.jpg',
'height': 239,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-slide.jpg',
'height': 396,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-superJumbo.jpg',
'height': 971,
'width': 1470,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-master1050.jpg',
'height': 694,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-master495.jpg',
'height': 327,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-master315.jpg',
'height': 208,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/06/05/business/05ADCO1/05ADCO1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/05/business/05ADCO1/05ADCO1-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'}],
'headline': {'main': 'Ad Campaigns Tag Along as Men Embrace Different Paths',
'kicker': 'Advertising',
'content_kicker': None,
'print_headline': 'Men Take New Paths, And Ads Tag Along',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Men and Boys',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Unilever NV',
'rank': 3,
'major': 'N'}],
'pub_date': '2017-06-04T23:14:28+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Matt Krupnick',
'person': [{'firstname': 'Matt',
'middlename': None,
'lastname': 'Krupnick',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/13b25cec-8ad0-59c8-9ac1-24a9d46d61ac',
'word_count': 862,
'uri': 'nyt://article/13b25cec-8ad0-59c8-9ac1-24a9d46d61ac'},
{'abstract': 'In “Milk Like Sugar,” three teenagers concoct a triple pregnancy plan to get baby shower loot like Coach diaper bags and little pink Jordans.',
'web_url': 'https://www.nytimes.com/2011/11/02/theater/reviews/milk-like-sugar-at-peter-jay-sharp-theater-review.html',
'snippet': 'In “Milk Like Sugar,” three teenagers concoct a triple pregnancy plan to get baby shower loot like Coach diaper bags and little pink Jordans.',
'lead_paragraph': 'The three young women chirping away like baby birds in a feathered nest in the opening scene of “Milk Like Sugar,” a provocative new play by Kirsten Greenidge that opened on Tuesday night at the Peter Jay Sharp Theater, don’t seem to have much of anything special on their minds. With blinged-out cellphones clutched permanently in elaborately manicured hands, they are killing time in a tattoo parlor, exchanging texts with boys, arguing over whose phone is the coolest (“Slider phones are kaput”), and what’s the best kind of ink to be getting: a rose or a ladybug?',
'print_section': 'C',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/02/arts/milk/milk-articleLarge.jpg',
'height': 350,
'width': 600,
'legacy': {'xlarge': 'images/2011/11/02/arts/milk/milk-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 350},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/02/arts/milk/milk-blog480.jpg',
'height': 380,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/02/arts/milk/milk-jumbo.jpg',
'height': 812,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/02/arts/milk/milk-popup.jpg',
'height': 515,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/02/arts/milk/milk-articleInline.jpg',
'height': 151,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/02/arts/milk/milk-sfSpan.jpg',
'height': 228,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/02/arts/milk/milk-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/11/02/arts/milk/milk-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Teenage Motherhood Is Serious, Especially With Baby Bling at Play',
'kicker': "Theater Review | 'Milk Like Sugar'",
'content_kicker': None,
'print_headline': 'Teenage Motherhood Is Serious, Especially With Baby Bling at Play',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Playwrights Horizons',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Boothe, Cherise', 'rank': 2, 'major': 'N'},
{'name': 'persons',
'value': 'Taichman, Rebecca Bayla',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': "Women's Project",
'rank': 4,
'major': 'N'},
{'name': 'creative_works',
'value': 'Milk Like Sugar (Play)',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'La Jolla Playhouse',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Theater', 'rank': 7, 'major': 'N'},
{'name': 'persons', 'value': 'Pinkins, Tonya', 'rank': 8, 'major': 'N'}],
'pub_date': '2011-11-02T02:00:40+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Theater',
'subsection_name': 'Theater Reviews',
'byline': {'original': 'By Charles Isherwood',
'person': [{'firstname': 'Charles',
'middlename': None,
'lastname': 'Isherwood',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/756456da-e0ed-5de8-980e-1ba6a18d2ab0',
'word_count': 1229,
'uri': 'nyt://article/756456da-e0ed-5de8-980e-1ba6a18d2ab0'},
{'abstract': 'If there was a mothering switch, I hadn’t yet found the dimmer.',
'web_url': 'https://parenting.blogs.nytimes.com/2015/02/05/shared-custody-so-even-on-paper-so-hard-on-the-first-night/',
'snippet': 'If there was a mothering switch, I hadn’t yet found the dimmer.',
'lead_paragraph': 'The first night I spent away from my son, I was certain I would never sleep. He had left with his father only a few hours before and was less than a mile away, but still my own crying was keeping me awake. ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-mediumThreeByTwo440.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-articleLarge.png',
'height': 300,
'width': 600,
'legacy': {'xlarge': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 300},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-blog480.png',
'height': 240,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-blog427.png',
'height': 214,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-tmagArticle.png',
'height': 296,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-jumbo.png',
'height': 400,
'width': 800,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-blog225.png',
'height': 113,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-master675.png',
'height': 338,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-master180.png',
'height': 90,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-popup.png',
'height': 325,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-blog533.png',
'height': 267,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-tmagSF.png',
'height': 181,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-slide.png',
'height': 300,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-superJumbo.png',
'height': 400,
'width': 800,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-master495.png',
'height': 248,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-master315.png',
'height': 158,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-articleInline.png',
'height': 95,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-hpSmall.png',
'height': 82,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-blogSmallInline.png',
'height': 76,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-mediumFlexible177.png',
'height': 89,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-sfSpan.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-hpLarge.png',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-largeWidescreen573.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-videoSixteenByNine150.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/11/21/us/motherlode-co-parenting/motherlode-co-parenting-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Shared Custody: So Even on Paper, So Hard on the First Night',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Divorce, Separations and Annulments',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'}],
'pub_date': '2015-02-05T19:56:57+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'U.S.',
'byline': {'original': 'By Jessica Ciencin Henriquez',
'person': [{'firstname': 'Jessica',
'middlename': 'Ciencin',
'lastname': 'Henriquez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b0c18e8d-0bbf-52fe-a6ea-3eb6fc9d1b6b',
'word_count': 756,
'uri': 'nyt://article/b0c18e8d-0bbf-52fe-a6ea-3eb6fc9d1b6b'},
{'abstract': 'Elisabeth Badinter argues that women are being steered away from careers and back into the home.',
'web_url': 'https://www.nytimes.com/2010/06/06/fashion/06Culture.html',
'snippet': 'Elisabeth Badinter argues that women are being steered away from careers and back into the home.',
'lead_paragraph': 'PARIS',
'print_section': 'ST',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/06/fashion/06culture-1/06culture-1-popup.jpg',
'height': 500,
'width': 333,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/06/fashion/06culture-1/06culture-1-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/06/fashion/06culture-1/06culture-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/06/06/fashion/06culture-1/06culture-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'In Defense of the Imperfect Mother',
'kicker': 'Cultural Studies',
'content_kicker': None,
'print_headline': 'In Defense of the Imperfect Mother',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Careers and Professions',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Badinter, Elisabeth',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 4,
'major': 'N'}],
'pub_date': '2010-06-04T17:43:55+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Steven Erlanger and Maïa de la Baume',
'person': [{'firstname': 'Steven',
'middlename': None,
'lastname': 'Erlanger',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Maïa',
'middlename': None,
'lastname': 'de la Baume',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7b2713df-800e-51ce-a36b-1dd0273c8697',
'word_count': 1347,
'uri': 'nyt://article/7b2713df-800e-51ce-a36b-1dd0273c8697'},
{'abstract': 'Why had my account been closed? And where was all my money?',
'web_url': 'https://www.nytimes.com/2014/02/12/opinion/gessen-the-checks-in-the-mail.html',
'snippet': 'Why had my account been closed? And where was all my money?',
'lead_paragraph': 'IT was the quintessential immigrant moment. Two weeks after my family and I had arrived in New York, a friend drove me to Costco. Half an hour later, at the cash register, I was hidden from view by the pyramid of diapers, napkins and other paper products in the shopping cart. My friend laughed and snapped a picture, promising to post it online with the caption, “Masha comes to America.”',
'print_section': 'A',
'print_page': '27',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-watch308.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-watch268.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoLarge.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-mediumThreeByTwo440.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-mediumThreeByTwo252.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-mediumThreeByTwo378.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-facebookJumbo.png',
'height': 536,
'width': 1024,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-articleLarge.png',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-blog480.png',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-blog427.png',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-tmagArticle.png',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-jumbo.png',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-blog225.png',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-master675.png',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-master180.png',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-popup.png',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-blog533.png',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-tmagSF.png',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-slide.png',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-superJumbo.png',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-master495.png',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-master315.png',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-square640.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-articleInline.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-hpSmall.png',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-blogSmallInline.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-mediumFlexible177.png',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-sfSpan.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-hpLarge.png',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-largeWidescreen573.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine768.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-videoSixteenByNine150.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-smallSquare252.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/06/opinion/gessen-circular/gessen-circular-smallSquare168.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Banking While Russian',
'kicker': 'Contributing Op-Ed Writer',
'content_kicker': None,
'print_headline': 'Banking While Russian',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Gessen, Masha',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Credit Cards', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'Russia', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Banking and Financial Institutions',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Citigroup Inc',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Russian-Americans',
'rank': 7,
'major': 'N'}],
'pub_date': '2014-02-11T10:11:39+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Masha Gessen',
'person': [{'firstname': 'Masha',
'middlename': None,
'lastname': 'Gessen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/11159853-09b7-5481-8166-55fe07006c59',
'word_count': 819,
'uri': 'nyt://article/11159853-09b7-5481-8166-55fe07006c59'},
{'abstract': 'Both working parents are equally in need of child care. So why do I suddenly think of my salary as paying that bill?',
'web_url': 'https://parenting.blogs.nytimes.com/2013/04/16/why-do-i-think-my-salary-pays-for-child-care/',
'snippet': 'Both working parents are equally in need of child care. So why do I suddenly think of my salary as paying that bill?',
'lead_paragraph': 'A few years ago, I wrote an eBook about how couples manage their money. As part of my research, I read “The Creation of Domestic Currencies” by the Princeton professor Viviana Zelizer, who studies the way economics and emotion intertwine. Dr. Zelizer writes about how in the 1920s and ’30s, when wives earned money — no matter how much money it was or how important it was to the family’s bottom line — it was treated as “pin money” and was earmarked for the more frivolous expenses. Maybe it would be used to buy a special dress for the baby. It probably would not be used to buy a house.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Why Do I Think My Salary Pays for Child Care?',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Child Care',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Wages and Salaries',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Work-Life Balance',
'rank': 6,
'major': 'N'}],
'pub_date': '2013-04-16T13:00:37+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6e28e353-aff3-5b93-9b71-697b869f15b8',
'word_count': 751,
'uri': 'nyt://article/6e28e353-aff3-5b93-9b71-697b869f15b8'}],
[{'abstract': 'Who knows if Mark Webber has a directing career ahead of him or not? But “The End of Love,” his second attempt at directing, is an attention grabber.',
'web_url': 'https://carpetbagger.blogs.nytimes.com/2012/01/21/actor-gets-attention-as-director-of-the-end-of-love/',
'snippet': 'Who knows if Mark Webber has a directing career ahead of him or not? But “The End of Love,” his second attempt at directing, is an attention grabber.',
'lead_paragraph': 'PARK CITY, Utah — Hollywood comes to Sundance to discover new directors. Quentin Tarantino, Michael Moore, Bryan Singer and Darren Aronofsky all got noticed for the first time (more or less) at the festival.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Actor Gets Attention as Director of ‘The End of Love’',
'kicker': 'Carpetbagger',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sundance Film Festival (Park City, Utah)',
'rank': 1,
'major': 'N'}],
'pub_date': '2012-01-21T15:48:45+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Arts',
'byline': {'original': 'By Brooks Barnes',
'person': [{'firstname': 'Brooks',
'middlename': None,
'lastname': 'Barnes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/faeb5ec9-a247-5171-b2c2-67cf51d8af62',
'word_count': 315,
'uri': 'nyt://article/faeb5ec9-a247-5171-b2c2-67cf51d8af62'},
{'abstract': 'A new campaign for Depend incontinence products aimed at people under 50 hopes to show that bladder incontinence is common — and not only among older people.',
'web_url': 'https://www.nytimes.com/2014/07/28/business/aiming-to-reduce-a-stigma-depends-new-pitch-is-drop-your-pants.html',
'snippet': 'A new campaign for Depend incontinence products aimed at people under 50 hopes to show that bladder incontinence is common — and not only among older people.',
'lead_paragraph': 'IT had been a fairly typical meeting in the New York offices of Ogilvy & Mather last November, with a team from the agency wrapping up a pitch for an advertising campaign to representatives from Depend, the brand of incontinence products from Kimberly-Clark. ',
'print_section': 'B',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/07/28/business/28Adco/28Adco-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/07/28/business/28Adco/28Adco-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-superJumbo.jpg',
'height': 1078,
'width': 1617,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/07/28/business/28Adco/28Adco-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/28/business/28Adco/28Adco-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Aiming to Reduce a Stigma, Depend’s New Pitch Is ‘Drop Your Pants’',
'kicker': None,
'content_kicker': None,
'print_headline': 'Aiming to Reduce a Stigma, Depend’s New Pitch Is ‘Drop Your Pants’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Lingerie and Underwear',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Incontinence', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Bladder', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Ogilvy & Mather',
'rank': 7,
'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 8, 'major': 'N'}],
'pub_date': '2014-07-28T02:17:29+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Andrew Adam Newman',
'person': [{'firstname': 'Andrew',
'middlename': 'Adam',
'lastname': 'Newman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/07dc9dcc-b5c4-5e71-9a86-662d45b1ef37',
'word_count': 881,
'uri': 'nyt://article/07dc9dcc-b5c4-5e71-9a86-662d45b1ef37'},
{'abstract': 'Readers weigh in on the turf war between parents who take children to bars and the barflies who jeer.',
'web_url': 'https://cityroom.blogs.nytimes.com/2012/08/02/whose-beer-garden-is-it-anyway/',
'snippet': 'Readers weigh in on the turf war between parents who take children to bars and the barflies who jeer.',
'lead_paragraph': 'Narcissistic parents who let their can-do-no-wrong offspring run rampant in bars. Children-hating philistines who cannot wrap their heads around the time-honored European institution of a child-friendly beer garden. Horrendous role models. Pandering bar owners. Crybaby hipsters. Moms and dads who refuse to grow up. Filthy, smelly children.',
'print_section': 'A',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Draft vs. Baby Bottle: The Beer Garden Debate',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': 'Draft vs. Baby Bottle: The Beer Garden Debate',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Bars', 'rank': 1, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Greenwood Park (Brooklyn, NY, Bar)',
'rank': 4,
'major': 'N'},
{'name': 'glocations',
'value': 'Park Slope (NYC)',
'rank': 5,
'major': 'N'}],
'pub_date': '2012-08-02T22:17:18+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By The New York Times',
'person': [],
'organization': 'The New York Times'},
'type_of_material': 'News',
'_id': 'nyt://article/22ca2591-a039-5800-acb8-98fd27b61ef7',
'word_count': 837,
'uri': 'nyt://article/22ca2591-a039-5800-acb8-98fd27b61ef7'},
{'abstract': 'Jack Mannino, known as the “Seven-Second Bandit” for robberies in the 1990s and featured in “Crime Scene” in January, was caught this weekend in Brooklyn.',
'web_url': 'https://cityroom.blogs.nytimes.com/2012/05/07/a-well-practiced-bank-robber-is-arrested-again/',
'snippet': 'Jack Mannino, known as the “Seven-Second Bandit” for robberies in the 1990s and featured in “Crime Scene” in January, was caught this weekend in Brooklyn.',
'lead_paragraph': 'A former mob associate wanted for a bank robbery in Brooklyn last year — after his release from prison for robbing more than 20 banks in the 1990s — was arrested on Sunday in Brooklyn, the Federal Bureau of Investigation said Monday.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'A Well-Practiced Bank Robber Is Arrested Again',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Bank Robberies',
'rank': 1,
'major': 'N'}],
'pub_date': '2012-05-07T19:26:14+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Michael Wilson',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Wilson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/07edb900-7abd-5298-be1c-74ff7df619b7',
'word_count': 333,
'uri': 'nyt://article/07edb900-7abd-5298-be1c-74ff7df619b7'},
{'abstract': 'A week after a series of storms devastated certain areas of the Midwest, people are still in dire need of support.',
'web_url': 'https://www.nytimes.com/2020/08/18/us/how-to-help-derecho-iowa.html',
'snippet': 'A week after a series of storms devastated certain areas of the Midwest, people are still in dire need of support.',
'lead_paragraph': 'Residents of the Midwest are still reeling from the impact of a derecho that devastated the region last week, leveling corn and soybean fields, destroying homes and causing hundreds of thousands to lose power. Iowa was hardest hit by the series of storms, which wiped out roughly a third of the state’s 31 million acres of farmland and many homes.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-superJumbo.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-master768.jpg',
'height': 513,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mediumSquareAt3X.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-horizontalMediumAt2X.jpg',
'height': 2001,
'width': 2998,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-threeByTwoLargeAt2X.jpg',
'height': 2001,
'width': 2998,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/merlin_175726683_77651aa7-630f-4405-b3bf-67947af64628-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/08/18/multimedia/18xp-derechohelp/18xp-derechohelp-mobileMasterAt3x.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Help Derecho Victims in the Midwest',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Philanthropy',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Midwestern States (US)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Food', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Wind', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Weather', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Volunteers and Community Service',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Iowa', 'rank': 7, 'major': 'N'}],
'pub_date': '2020-08-18T22:23:45+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Concepción de León',
'person': [{'firstname': 'Concepción',
'middlename': None,
'lastname': 'de León',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3239ec59-9120-502e-99df-01616d82e14c',
'word_count': 793,
'uri': 'nyt://article/3239ec59-9120-502e-99df-01616d82e14c'},
{'abstract': 'Severe cases of neonatal jaundice need to be treated with one or two days of continuous phototherapy, which is impractical in resource-poor countries.',
'web_url': 'https://www.nytimes.com/2011/09/27/health/27jaundice.html',
'snippet': 'Severe cases of neonatal jaundice need to be treated with one or two days of continuous phototherapy, which is impractical in resource-poor countries.',
'lead_paragraph': 'Neonatal jaundice, a condition caused by excess bilirubin in the blood, affects most babies in the first few days of life when their livers are just beginning to function. It gives the skin a yellowish tint, but normally it goes away after a week or two without treatment, and the condition has no lasting consequences.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/27/science/27jaundice/27jaundice-articleLarge.jpg',
'height': 377,
'width': 600,
'legacy': {'xlarge': 'images/2011/09/27/science/27jaundice/27jaundice-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 377},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/27/science/27jaundice/27jaundice-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/27/science/27jaundice/27jaundice-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/27/science/27jaundice/27jaundice-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/27/science/27jaundice/27jaundice-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/27/science/27jaundice/27jaundice-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/27/science/27jaundice/27jaundice-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/09/27/science/27jaundice/27jaundice-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'For Neonatal Jaundice, a New Option in Resource-Poor Nations',
'kicker': None,
'content_kicker': None,
'print_headline': 'Brilliance',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Jaundice',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Compact Fluorescent Light Bulbs',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Third World and Developing Countries',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Energy Efficiency', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Medicine and Health',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 6,
'major': 'N'}],
'pub_date': '2011-09-26T22:08:33+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Nicholas Bakalar',
'person': [{'firstname': 'Nicholas',
'middlename': None,
'lastname': 'Bakalar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/78a9a5a5-a0b9-5a6e-acfd-589214e7310a',
'word_count': 312,
'uri': 'nyt://article/78a9a5a5-a0b9-5a6e-acfd-589214e7310a'},
{'abstract': 'By offering pads and tampons, centers help ease the budgets of stretched families. “This is a need — it’s not a want.”',
'web_url': 'https://www.nytimes.com/2019/12/17/neediest-cases/women-poverty-menstrual-hygiene-products.html',
'snippet': 'By offering pads and tampons, centers help ease the budgets of stretched families. “This is a need — it’s not a want.”',
'lead_paragraph': 'When Latoya Ramjit was growing up in Bensonhurst, Brooklyn, her mother would travel to food pantries in New Jersey or Staten Island in hopes of finding better products than those in their neighborhood. ',
'print_section': 'A',
'print_page': '30',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-articleLarge.jpg',
'height': 750,
'width': 600,
'legacy': {'xlarge': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 750},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-popup.jpg',
'height': 500,
'width': 401,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-blog480.jpg',
'height': 600,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-blog533.jpg',
'height': 666,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-blog427.jpg',
'height': 534,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-tmagSF.jpg',
'height': 452,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-tmagArticle.jpg',
'height': 740,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-slide.jpg',
'height': 500,
'width': 401,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-jumbo.jpg',
'height': 1024,
'width': 820,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-superJumbo.jpg',
'height': 2048,
'width': 1639,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-blog225.jpg',
'height': 281,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-master1050.jpg',
'height': 1312,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-master675.jpg',
'height': 844,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-master495.jpg',
'height': 619,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-master180.jpg',
'height': 225,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-master315.jpg',
'height': 394,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-master768.jpg',
'height': 960,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-horizontalMediumAt2X.jpg',
'height': 1638,
'width': 2458,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-threeByTwoLargeAt2X.jpg',
'height': 1638,
'width': 2458,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-articleInline.jpg',
'height': 237,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-hpSmall.jpg',
'height': 204,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-blogSmallInline.jpg',
'height': 189,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mediumFlexible177.jpg',
'height': 221,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/12/18/nyregion/18ncf-women1-print/17ncf-women-mobileMasterAt3x.jpg',
'height': 2250,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'At Food Pantries, Addressing the Needs of Women',
'kicker': 'The Neediest Cases Fund',
'content_kicker': None,
'print_headline': 'Beyond Soup to Nuts, Food Pantries Are Addressing the Needs of Women',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'New York Times Neediest Cases Fund',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Feeding America',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Food Bank for New York City',
'rank': 3,
'major': 'N'}],
'pub_date': '2019-12-17T16:43:53+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'Neediest Cases',
'byline': {'original': 'By Sara Aridi',
'person': [{'firstname': 'Sara',
'middlename': None,
'lastname': 'Aridi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7fa3a16c-dd44-5372-a0b2-2b94c1f72dff',
'word_count': 792,
'uri': 'nyt://article/7fa3a16c-dd44-5372-a0b2-2b94c1f72dff'},
{'abstract': 'The hardest part about taking paternity leave may be saving the money to afford it in the first place.',
'web_url': 'https://bucks.blogs.nytimes.com/2010/01/29/the-financial-side-to-paternity-leave/',
'snippet': 'The hardest part about taking paternity leave may be saving the money to afford it in the first place.',
'lead_paragraph': 'Our colleagues over at the Motherlode blog note that the British government has just approved a paid paternity leave system that allows men to stay home for up to three months, under certain circumstances, to take care of a newly arrived child.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Financial Side to Paternity Leave',
'kicker': 'Bucks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-01-29T17:54:23+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Your Money',
'byline': {'original': 'By Ron Lieber',
'person': [{'firstname': 'Ron',
'middlename': None,
'lastname': 'Lieber',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/93b0b8d9-39e5-5e13-9109-6c874287f15b',
'word_count': 349,
'uri': 'nyt://article/93b0b8d9-39e5-5e13-9109-6c874287f15b'},
{'abstract': 'An intrepid travel writer, with an infant in tow, explores the challenges and joys of navigating the world on a tight budget.',
'web_url': 'https://www.nytimes.com/2016/05/22/travel/frugal-traveler-expands-with-family-feature.html',
'snippet': 'An intrepid travel writer, with an infant in tow, explores the challenges and joys of navigating the world on a tight budget.',
'lead_paragraph': 'The tent, designed for solo backpacking, was as sleek as a kite. For years, my husband and I squeezed into it. Then, last summer, we added a third person to our crowded wigwam when our daughter, Roxie, was born. Six weeks later, we spent a trial night beside a redwood-shaded Northern California river.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'A Globe-Trotting Couple Expands Their Tent for Three',
'kicker': 'Frugal Family',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Budget Travel',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 2,
'major': 'N'}],
'pub_date': '2016-05-19T11:00:03+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Freda Moon',
'person': [{'firstname': 'Freda',
'middlename': None,
'lastname': 'Moon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/69bc31b5-620f-5fb4-926a-2d7471b1c8c4',
'word_count': 357,
'uri': 'nyt://article/69bc31b5-620f-5fb4-926a-2d7471b1c8c4'},
{'abstract': 'Diapers.com enlists talking babies in a new television commercial being tested in St. Louis.',
'web_url': 'https://mediadecoder.blogs.nytimes.com/2010/04/05/more-talking-babies-this-time-in-a-new-ad-for-diapers-com/',
'snippet': 'Diapers.com enlists talking babies in a new television commercial being tested in St. Louis.',
'lead_paragraph': 'E*Trade has commercials with talking babies. Zappos has commercials that offer a fanciful look at its customer service center. So can you guess the approach being taken in a campaign for Diapers.com?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'More Talking Babies, This Time in a New Ad for Diapers.com',
'kicker': 'Media Decoder',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Babies', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Online Advertising',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': 'AD STORE', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'E*TRADE Financial Corp',
'rank': 5,
'major': 'N'},
{'name': 'organizations', 'value': 'Zappos', 'rank': 6, 'major': 'N'},
{'name': 'glocations', 'value': 'St Louis (Mo)', 'rank': 7, 'major': 'N'}],
'pub_date': '2010-04-05T11:01:53+0000',
'document_type': 'article',
'news_desk': 'Media',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Stuart Elliott',
'person': [{'firstname': 'Stuart',
'middlename': None,
'lastname': 'Elliott',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/bada5f20-65b8-561a-9850-701896e01a1c',
'word_count': 310,
'uri': 'nyt://article/bada5f20-65b8-561a-9850-701896e01a1c'}],
[{'abstract': 'The dropped crotch is shaping up as the new decade’s most influential trouser trend.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/03/09/how-low-can-you-go/',
'snippet': 'The dropped crotch is shaping up as the new decade’s most influential trouser trend.',
'lead_paragraph': 'The dropped crotch is shaping up as the new decade’s most influential trouser trend. But as pant fronts fall, even dedicated followers of fashion are hard pressed to describe the differences between dhoti, samurai, Zouave and harem pants. Some critics claim the dropped crotch screams fashion victim, but in fact it owes its exaggerated form to utility. Designed for easy movement and comfort in hot climates, it’s an unexpectedly practical wardrobe addition. And you never have to worry about a wedgie. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'How Low Can You Go?',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-03-09T17:08:20+0000',
'document_type': 'article',
'news_desk': 'TStyle',
'section_name': 'T Magazine',
'byline': {'original': 'By Sameer Reddy',
'person': [{'firstname': 'Sameer',
'middlename': None,
'lastname': 'Reddy',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/4745b0a8-f15a-52b4-9945-513277f12fe9',
'word_count': 345,
'uri': 'nyt://article/4745b0a8-f15a-52b4-9945-513277f12fe9'},
{'abstract': 'A father sues for discrimination when his double stroller is turned away by a bus driver.',
'web_url': 'https://parenting.blogs.nytimes.com/2011/02/10/should-strollers-be-banned/',
'snippet': 'A father sues for discrimination when his double stroller is turned away by a bus driver.',
'lead_paragraph': 'The story began in Halifax just after New Year’s, when a couple were told they could not board a city bus with their 6-month-old twin sons because their stroller was too big.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Should Strollers Be Banned?',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-02-10T17:34:02+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/e18f1ee9-7cd8-583f-97b3-ec2930694839',
'word_count': 843,
'uri': 'nyt://article/e18f1ee9-7cd8-583f-97b3-ec2930694839'},
{'abstract': 'After two tough losses to start conference play, Vanderbilt turned things around at Mississippi State.',
'web_url': 'https://thequad.blogs.nytimes.com/2011/01/31/in-the-sec-winning-on-the-road-is-not-easy/',
'snippet': 'After two tough losses to start conference play, Vanderbilt turned things around at Mississippi State.',
'lead_paragraph': 'When I started thinking about writing this article, I was very confident about what it would be about. The headline would be “Winning on the Road in the SEC,” and the content would describe the great feeling you get when you beat a rival on ESPN’s College Gameday. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'In the SEC, Winning on the Road Is Not Easy',
'kicker': 'The Quad',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Basketball',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Duffy, Joe', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Vitale, Dick', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Vanderbilt University',
'rank': 4,
'major': 'N'}],
'pub_date': '2011-02-01T03:44:38+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'subsection_name': 'Pro Basketball',
'byline': {'original': 'By Joseph Duffy',
'person': [{'firstname': 'Joseph',
'middlename': None,
'lastname': 'Duffy',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/43fc6851-6cce-54a3-955d-77a20c57475c',
'word_count': 884,
'uri': 'nyt://article/43fc6851-6cce-54a3-955d-77a20c57475c'},
{'abstract': 'Faced with an increasingly aging population, Japan must take steps to raise its alarmingly low birthrate.',
'web_url': 'https://www.nytimes.com/2012/12/16/opinion/sunday/without-babies-can-japan-survive.html',
'snippet': 'Faced with an increasingly aging population, Japan must take steps to raise its alarmingly low birthrate.',
'lead_paragraph': 'TOKYO',
'print_section': 'SR',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-jumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-hpSmall.jpg',
'height': 100,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/16/sunday-review/16JAPAN/16JAPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Without Babies, Can Japan Survive?',
'kicker': 'Opinion',
'content_kicker': None,
'print_headline': 'Without Babies, Can Japan Survive?',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Birth Rates',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Japan', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 3,
'major': 'N'}],
'pub_date': '2012-12-15T19:52:03+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By Alexandra Harney',
'person': [{'firstname': 'Alexandra',
'middlename': None,
'lastname': 'Harney',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/fc07acd9-5a31-5aeb-92f3-b1d42d33cff5',
'word_count': 837,
'uri': 'nyt://article/fc07acd9-5a31-5aeb-92f3-b1d42d33cff5'},
{'abstract': 'Recovering unsold garments for use by the poor is not a new idea, nor a complicated one. So why are some just thrown away?',
'web_url': 'https://www.nytimes.com/2010/01/10/nyregion/10about.html',
'snippet': 'Recovering unsold garments for use by the poor is not a new idea, nor a complicated one. So why are some just thrown away?',
'lead_paragraph': 'Good ideas have legs. One day in 1985, Suzanne Davis asked a friend, Larry Phillips, the president of the Phillips-Van Heusen clothing line, if his company had any excess inventory that could be used by homeless men. A few days later, Mr. Phillips sent 100 boxes of windbreakers to a shelter on the Bowery. ',
'print_section': 'MB',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/01/10/nyregion/10about_span/articleLarge.jpg',
'height': 296,
'width': 600,
'legacy': {'xlarge': 'images/2010/01/10/nyregion/10about_span/articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 296},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/01/10/nyregion/10about_span/articleLarge.jpg',
'height': 296,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/01/10/nyregion/10about_span/thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/01/10/nyregion/10about_span/thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Where Unsold Clothes Meet People in Need',
'kicker': 'About New York',
'content_kicker': None,
'print_headline': 'Where Unsold Clothes Meet People in Need',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 2,
'major': 'N'},
{'name': 'organizations', 'value': 'H&M', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 5, 'major': 'N'}],
'pub_date': '2010-01-09T01:46:23+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Jim Dwyer',
'person': [{'firstname': 'Jim',
'middlename': None,
'lastname': 'Dwyer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2d289df9-5563-59c2-8729-5e907d9872af',
'word_count': 809,
'uri': 'nyt://article/2d289df9-5563-59c2-8729-5e907d9872af'},
{'abstract': 'A new feature on the iPhone moves Apple closer to the mobile wallet business by storing digital payment options and loyalty cards in one handy application.',
'web_url': 'https://bits.blogs.nytimes.com/2012/06/11/apple-empties-your-wallet-and-puts-it-in-the-iphone/',
'snippet': 'A new feature on the iPhone moves Apple closer to the mobile wallet business by storing digital payment options and loyalty cards in one handy application.',
'lead_paragraph': 'The Passbook that Apple announced on Monday is not quite a wallet, but it nudges us one step closer to turning our phones into pocketbooks.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Apple Puts Your Wallet in the iPhone',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'iPhone',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Mobile Applications',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Apple Incorporated',
'rank': 3,
'major': 'N'}],
'pub_date': '2012-06-11T21:30:05+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'byline': {'original': 'By Somini Sengupta',
'person': [{'firstname': 'Somini',
'middlename': None,
'lastname': 'Sengupta',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/77fa07c5-3c99-5f02-ba68-f02f16b7ed55',
'word_count': 335,
'uri': 'nyt://article/77fa07c5-3c99-5f02-ba68-f02f16b7ed55'},
{'abstract': 'A Baptist boy from Texas goes to a Northwestern liberal arts college in “Blue Like Jazz,” an adaptation of Don Miller’s memoir.',
'web_url': 'https://www.nytimes.com/2012/04/13/movies/blue-like-jazz-directed-by-steve-taylor.html',
'snippet': 'A Baptist boy from Texas goes to a Northwestern liberal arts college in “Blue Like Jazz,” an adaptation of Don Miller’s memoir.',
'lead_paragraph': 'Opens on Friday in Manhattan.',
'print_section': 'C',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/13RDP_BLUE_SPAN-articleLarge.jpg',
'height': 370,
'width': 600,
'legacy': {'xlarge': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/13RDP_BLUE_SPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 370},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/FILMROUNDUP3-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/FILMROUNDUP3-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/13RDP_BLUE_SPAN-articleLarge.jpg',
'height': 370,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/FILMROUNDUP3-superJumbo.jpg',
'height': 1333,
'width': 2000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/FILMROUNDUP3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/13RDP_BLUE_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/13RDP_BLUE_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/04/13/arts/13RDP_BLUE_SPAN/13RDP_BLUE_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'The Bible Belt Goes to College',
'kicker': 'Movie Review',
'content_kicker': None,
'print_headline': 'Blue Like Jazz',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Taylor, Steve', 'rank': 2, 'major': 'N'},
{'name': 'creative_works',
'value': 'Blue Like Jazz (Movie)',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Allman, Marshall', 'rank': 4, 'major': 'N'}],
'pub_date': '2012-04-12T22:43:05+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Rachel Saltz',
'person': [{'firstname': 'Rachel',
'middlename': None,
'lastname': 'Saltz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/3a954c5b-98ae-5add-b9dc-64df46efb23f',
'word_count': 301,
'uri': 'nyt://article/3a954c5b-98ae-5add-b9dc-64df46efb23f'},
{'abstract': 'Kira Kovalenko’s moody drama centers on a young woman trapped under her father’s thumb in the North Caucasus region of Russia.',
'web_url': 'https://www.nytimes.com/2023/05/25/movies/unclenching-the-fists-review.html',
'snippet': 'Kira Kovalenko’s moody drama centers on a young woman trapped under her father’s thumb in the North Caucasus region of Russia.',
'lead_paragraph': 'The Russian director Kira Kovalenko’s moody, miserablist drama “Unclenching the Fists” captures a turning point in the life of Ada (Milana Aguzarova), a young woman trapped under her father’s thumb.',
'print_section': 'C',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-superJumbo.jpg',
'height': 1203,
'width': 1806,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumSquareAt3X.jpg',
'height': 1203,
'width': 1204,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-horizontalMediumAt2X.jpg',
'height': 1203,
'width': 1804,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-threeByTwoLargeAt2X.jpg',
'height': 1203,
'width': 1804,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/05/25/multimedia/25unclenching-the-fists-review-pkvl/25unclenching-the-fists-review-pkvl-mobileMasterAt3x.jpg',
'height': 1199,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘Unclenching the Fists’ Review: The Cost of Freedom',
'kicker': None,
'content_kicker': None,
'print_headline': 'Unclenching the Fists',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'Unclenching the Fists (Movie)',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Kovalenko, Kira', 'rank': 3, 'major': 'N'},
{'name': 'persons',
'value': 'Aguzarova, Milana',
'rank': 4,
'major': 'N'}],
'pub_date': '2023-05-25T16:08:02+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Beatrice Loayza',
'person': [{'firstname': 'Beatrice',
'middlename': None,
'lastname': 'Loayza',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/fa4df2f2-6c92-5fe7-b8b1-c19fa6141741',
'word_count': 301,
'uri': 'nyt://article/fa4df2f2-6c92-5fe7-b8b1-c19fa6141741'},
{'abstract': 'This enlightening, troubling documentary chronicles life (and death) among residents in a long-term care facility during the heights of the pandemic.',
'web_url': 'https://www.nytimes.com/2023/09/28/movies/fire-through-dry-grass-review.html',
'snippet': 'This enlightening, troubling documentary chronicles life (and death) among residents in a long-term care facility during the heights of the pandemic.',
'lead_paragraph': 'As the acute threat of Covid-19 has waned, it has become easy to forget the surreal devastation of the early days of the pandemic, and the fissures the period exposed in our society. “Fire Through Dry Grass,” directed by Alexis Neophytides and Andres Molina, highlights the plight of those most vulnerable to the coronavirus. Molina, known as Jay, is a resident of Coler Rehabilitation and Nursing Care Center, the facility on which the documentary is centered, located on Roosevelt Island.',
'print_section': 'C',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-superJumbo.jpg',
'height': 1080,
'width': 1620,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumSquareAt3X.jpg',
'height': 1080,
'width': 1080,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-horizontalMediumAt2X.jpg',
'height': 1080,
'width': 1620,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-threeByTwoLargeAt2X.jpg',
'height': 1080,
'width': 1620,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/29/multimedia/28fire-through-dry-grass-review-lqgj/28fire-through-dry-grass-review-lqgj-mobileMasterAt3x.jpg',
'height': 1080,
'width': 1620,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘Fire Through Dry Grass’ Review: Unsafe Space',
'kicker': 'Critic’s Pick',
'content_kicker': None,
'print_headline': 'Fire Through Dry Grass',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Documentary Films and Programs',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Nursing Homes', 'rank': 3, 'major': 'N'},
{'name': 'creative_works',
'value': 'Fire Through Dry Grass (Movie)',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Neophytides, Alexis',
'rank': 5,
'major': 'N'},
{'name': 'persons',
'value': 'Molina, Andres (Jay)',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Coler Rehabilitation and Nursing Care Center',
'rank': 7,
'major': 'N'},
{'name': 'glocations',
'value': 'Roosevelt Island (Manhattan, NY)',
'rank': 8,
'major': 'N'}],
'pub_date': '2023-09-28T11:00:08+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Concepción de León',
'person': [{'firstname': 'Concepción',
'middlename': None,
'lastname': 'de León',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/ebe3f2bd-a537-57f0-ae6f-9b5984496446',
'word_count': 288,
'uri': 'nyt://article/ebe3f2bd-a537-57f0-ae6f-9b5984496446'},
{'abstract': 'Also in the news: A squabble leads to a fatal stabbing, a deal is struck to build a power cable under the Hudson River, and the price of coffee is rising.',
'web_url': 'https://cityroom.blogs.nytimes.com/2011/03/02/morning-buzz-cuomo-offers-teacher-merit-proposal/',
'snippet': 'Also in the news: A squabble leads to a fatal stabbing, a deal is struck to build a power cable under the Hudson River, and the price of coffee is rising.',
'lead_paragraph': 'Gusty Wednesday, but creeping ever so slowly toward spring with highs of 52 and mostly sunny. During the night, the weather will plunge back into winter, with overnight temperatures below freezing.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Morning Buzz | Cuomo Offers Teacher-Merit Proposal',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'New York City',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-03-02T13:35:22+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Jason Tomassini',
'person': [{'firstname': 'Jason',
'middlename': None,
'lastname': 'Tomassini',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/a36918dd-7e83-5ab1-a919-b755aed041ca',
'word_count': 749,
'uri': 'nyt://article/a36918dd-7e83-5ab1-a919-b755aed041ca'}],
[{'abstract': 'Last weekend, as Democrats danced in the streets to celebrate the election of Joseph R. Biden Jr., QAnon believers were on their computers, trying to make sense of it all.',
'web_url': 'https://www.nytimes.com/2020/11/10/us/politics/with-their-hero-defeated-qanon-followers-ask-now-what.html',
'snippet': '',
'lead_paragraph': 'Last weekend, as Democrats danced in the streets to celebrate the election of Joseph R. Biden Jr., QAnon believers were on their computers, trying to make sense of it all.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-horizontalMediumAt2X.jpg',
'height': 3868,
'width': 5802,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-threeByTwoLargeAt2X.jpg',
'height': 3868,
'width': 5802,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/merlin_177206061_c46da182-4846-43a1-8c74-8d85bc5d7fe4-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/10/us/politics/10transition-briefing-qanon/10transition-briefing-qanon-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'With their hero defeated, QAnon followers ask, ‘Now what?’',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2020-11-10T19:28:48+0000',
'document_type': 'article',
'news_desk': 'Washington',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Kevin Roose',
'person': [{'firstname': 'Kevin',
'middlename': None,
'lastname': 'Roose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a0d952d3-ac31-5672-aaf6-6e2362fa420a',
'word_count': 317,
'uri': 'nyt://article/a0d952d3-ac31-5672-aaf6-6e2362fa420a'},
{'abstract': '“Safe and sanitary” conditions are legally required for detained migrant children. Reports from a Texas border station set off an outcry that those standards weren’t being met.',
'web_url': 'https://www.nytimes.com/2019/07/01/podcasts/the-daily/migrant-children-border-detention-clint-texas.html',
'snippet': '“Safe and sanitary” conditions are legally required for detained migrant children. Reports from a Texas border station set off an outcry that those standards weren’t being met.',
'lead_paragraph': 'Listen and subscribe to our podcast from your mobile device: Via Apple Podcasts | Via RadioPublic | Via Stitcher',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Inside the Migrant Detention Center in Clint, Tex.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Immigration Detention',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Illegal Immigration',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Health and Human Services Department',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Child Abuse and Neglect',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 7,
'major': 'N'},
{'name': 'glocations', 'value': 'Clint (Tex)', 'rank': 8, 'major': 'N'}],
'pub_date': '2019-07-01T10:00:05+0000',
'document_type': 'article',
'news_desk': 'Podcasts',
'section_name': 'Podcasts',
'subsection_name': 'The Daily',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/99796b7c-e158-547c-9f4a-b6bc8c32ce3a',
'word_count': 267,
'uri': 'nyt://article/99796b7c-e158-547c-9f4a-b6bc8c32ce3a'},
{'abstract': 'The Times’s Neediest Cases Fund helps a couple buy the basics infants need.',
'web_url': 'https://www.nytimes.com/2014/12/25/opinion/struggling-and-caring-for-premature-babies.html',
'snippet': 'The Times’s Neediest Cases Fund helps a couple buy the basics infants need.',
'lead_paragraph': 'Hope Clark’s twin girls are both healthy now, but when they were born at 29 weeks in October 2013, each baby weighed just 2 pounds, 8 ounces, and neither could breathe on her own because their lungs were not yet fully developed. Kalee had bleeding in her brain and doctors are still monitoring her for cerebral palsy; Lia, a breech baby, was delivered by emergency C-section. ',
'print_section': 'A',
'print_page': '26',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Struggling and Caring for Premature Babies',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'Struggling and Caring for Premature Babies',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Editorials',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Premature Babies', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Clark, Hope', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'New York Times Neediest Cases Fund',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-12-25T00:23:23+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/53b99873-61ba-5a78-b5f0-d89f3df950e7',
'word_count': 317,
'uri': 'nyt://article/53b99873-61ba-5a78-b5f0-d89f3df950e7'},
{'abstract': 'Mr. Smith’s newest exhibition considers theme parks, Ponce de León and Baby Ikki’s flair for ballet.',
'web_url': 'https://www.nytimes.com/2015/07/24/arts/design/michael-smith-examines-lifes-absurdity-at-greene-naftali.html',
'snippet': 'Mr. Smith’s newest exhibition considers theme parks, Ponce de León and Baby Ikki’s flair for ballet.',
'lead_paragraph': 'What kind of world do we live in, where the fountain of youth is in a Florida theme park, ballet is used to demonstrate the frustrations of airport security, and our greatest existential conundrum is how to keep those white Apple earphones untangled?',
'print_section': 'C',
'print_page': '20',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-facebookJumbo.jpg',
'height': 414,
'width': 792,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-articleLarge.jpg',
'height': 376,
'width': 600,
'legacy': {'xlarge': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 376},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-blog480.jpg',
'height': 301,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-blog427.jpg',
'height': 267,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-tmagArticle.jpg',
'height': 371,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-jumbo.jpg',
'height': 496,
'width': 792,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-blog225.jpg',
'height': 141,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-master675.jpg',
'height': 423,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-master180.jpg',
'height': 113,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-popup.jpg',
'height': 407,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-blog533.jpg',
'height': 334,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-tmagSF.jpg',
'height': 227,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-slide.jpg',
'height': 376,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-superJumbo.jpg',
'height': 496,
'width': 792,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-master495.jpg',
'height': 310,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-master315.jpg',
'height': 197,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-articleInline.jpg',
'height': 119,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-hpSmall.jpg',
'height': 102,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-blogSmallInline.jpg',
'height': 95,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-mediumFlexible177.jpg',
'height': 111,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/24/arts/24MICHAELSMITHGALLERY5/24MICHAELSMITHGALLERY5-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Michael Smith Examines Life’s Absurdity at Greene Naftali',
'kicker': 'Art Review',
'content_kicker': None,
'print_headline': 'Michael Smith',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Art', 'rank': 1, 'major': 'N'},
{'name': 'glocations',
'value': 'Chelsea (Manhattan, NY)',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Smith, Michael', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Greene Naftali (Manhattan, NY, Gallery)',
'rank': 5,
'major': 'N'}],
'pub_date': '2015-07-23T19:56:38+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Arts',
'subsection_name': 'Art & Design',
'byline': {'original': 'By Martha Schwendener',
'person': [{'firstname': 'Martha',
'middlename': None,
'lastname': 'Schwendener',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/a95233ae-554b-5e47-b968-2b07a4056fd4',
'word_count': 347,
'uri': 'nyt://article/a95233ae-554b-5e47-b968-2b07a4056fd4'},
{'abstract': 'The investment is the latest by Fireman Capital, a five-year-old firm that has scored several big hits in recent years.',
'web_url': 'https://dealbook.nytimes.com/2013/11/22/skip-hop-maker-of-childrens-gear-sells-majority-stake-to-equity-firm/',
'snippet': 'The investment is the latest by Fireman Capital, a five-year-old firm that has scored several big hits in recent years.',
'lead_paragraph': 'A maker of children’s gear, including popular backpacks with cartoon characters, is planning to grow — with the help of a private equity firm.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-articleLarge.jpg',
'height': 559,
'width': 600,
'legacy': {'xlarge': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 559},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-blog480.jpg',
'height': 447,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-blog427.jpg',
'height': 398,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-tmagArticle.jpg',
'height': 552,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-jumbo.jpg',
'height': 943,
'width': 1012,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-blog225.jpg',
'height': 210,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-master675.jpg',
'height': 629,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-master180.jpg',
'height': 168,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-popup.jpg',
'height': 500,
'width': 537,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-blog533.jpg',
'height': 497,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-tmagSF.jpg',
'height': 337,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-slide.jpg',
'height': 500,
'width': 537,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-superJumbo.jpg',
'height': 943,
'width': 1012,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-master495.jpg',
'height': 461,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-articleInline.jpg',
'height': 177,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-hpSmall.jpg',
'height': 152,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-blogSmallInline.jpg',
'height': 141,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-mediumFlexible177.jpg',
'height': 165,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/11/22/business/dbpix-skip3/dbpix-skip3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Skip Hop, Maker of Children’s Gear, Sells Majority Stake to Equity Firm',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Mergers, Acquisitions and Divestitures',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Private Equity', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Fireman Capital Partners',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Skip Hop Inc',
'rank': 5,
'major': 'N'}],
'pub_date': '2013-11-22T18:20:08+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Michael J. de la Merced',
'person': [{'firstname': 'Michael',
'middlename': 'J.',
'lastname': 'de la Merced',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ed5467f9-e5ea-5ae3-96bb-7ca2c0615cc6',
'word_count': 324,
'uri': 'nyt://article/ed5467f9-e5ea-5ae3-96bb-7ca2c0615cc6'},
{'abstract': 'Sweden’s SCA Group offered to pay $1.1 billion on Monday for all of the shares in the Chinese paper hygiene products company Vinda International that it did not already own.',
'web_url': 'https://dealbook.nytimes.com/2013/09/09/swedish-tissue-maker-bids-1-1-billion-for-chinese-peer/',
'snippet': 'Sweden’s SCA Group offered to pay $1.1 billion on Monday for all of the shares in the Chinese paper hygiene products company Vinda International that it did not already own.',
'lead_paragraph': 'Updated, 5:30 a.m. | ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Swedish Tissue Maker Bids $1.1 Billion for Chinese Peer',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Mergers, Acquisitions and Divestitures',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Svenska Cellulosa Aktiebolaget (SCA)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Vinda International Holdings Ltd',
'rank': 5,
'major': 'N'}],
'pub_date': '2013-09-09T06:02:49+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Neil Gough',
'person': [{'firstname': 'Neil',
'middlename': None,
'lastname': 'Gough',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ab8dafa7-d104-5a85-b0d9-80f866e8917d',
'word_count': 357,
'uri': 'nyt://article/ab8dafa7-d104-5a85-b0d9-80f866e8917d'},
{'abstract': 'Amazon.com is expected to generate $75 billion in revenue this year by putting its customers first. Tuesday, in a very rare move, it put its bottom line first.',
'web_url': 'https://bits.blogs.nytimes.com/2013/10/22/amazon-tightens-shipping-requirements/',
'snippet': 'Amazon.com is expected to generate $75 billion in revenue this year by putting its customers first. Tuesday, in a very rare move, it put its bottom line first.',
'lead_paragraph': ' Amazon.com tightened the requirements for one of its most popular shipping methods Tuesday morning.',
'print_section': 'B',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-articleLarge.jpg',
'height': 392,
'width': 600,
'legacy': {'xlarge': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 392},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-blog480.jpg',
'height': 314,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-blog427.jpg',
'height': 279,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-tmagArticle.jpg',
'height': 387,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-jumbo.jpg',
'height': 669,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-blog225.jpg',
'height': 147,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-master675.jpg',
'height': 441,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-master180.jpg',
'height': 118,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-popup.jpg',
'height': 425,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-blog533.jpg',
'height': 348,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-tmagSF.jpg',
'height': 237,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-slide.jpg',
'height': 392,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-superJumbo.jpg',
'height': 1339,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-master1050.jpg',
'height': 686,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-master495.jpg',
'height': 324,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-articleInline.jpg',
'height': 124,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-hpSmall.jpg',
'height': 107,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-blogSmallInline.jpg',
'height': 99,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-mediumFlexible177.jpg',
'height': 116,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/22/business/22bits-amazonshipping/22bits-amazonshipping-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Amazon Raises Threshold for Free Shipping',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': 'Amazon Increases Threshold To Ship Free',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Customer Relations',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 3,
'major': 'N'}],
'pub_date': '2013-10-22T17:42:53+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'byline': {'original': 'By David Streitfeld',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Streitfeld',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6b87b3ae-b410-528f-a051-e7fdecfa05e6',
'word_count': 353,
'uri': 'nyt://article/6b87b3ae-b410-528f-a051-e7fdecfa05e6'},
{'abstract': 'In The Times’s Booming blog today, Michael Winerip writes about a new play whose message might sound familiar to readers of The New Old Age.',
'web_url': 'https://newoldage.blogs.nytimes.com/2012/10/22/your-story-onstage/',
'snippet': 'In The Times’s Booming blog today, Michael Winerip writes about a new play whose message might sound familiar to readers of The New Old Age.',
'lead_paragraph': 'In The Times’s Booming blog today, Michael Winerip writes about a new play whose message might sound familiar to readers of The New Old Age.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Your Story, Onstage',
'kicker': 'The New Old Age',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Baby Boomers',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Jiler, John', 'rank': 2, 'major': 'N'}],
'pub_date': '2012-10-22T20:44:26+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Health',
'byline': {'original': 'By The New York Times',
'person': [],
'organization': 'The New York Times'},
'type_of_material': 'News',
'_id': 'nyt://article/46843d66-d777-5884-ba19-c5565f2eca57',
'word_count': 344,
'uri': 'nyt://article/46843d66-d777-5884-ba19-c5565f2eca57'},
{'abstract': 'An SEC tournament championship and three straight years in the N.C.A.A. tournament–for those who love Vanderbilt, the month has started very well.',
'web_url': 'https://thequad.blogs.nytimes.com/2012/03/11/for-a-vanderbilt-fan-a-sweet-sunday/',
'snippet': 'An SEC tournament championship and three straight years in the N.C.A.A. tournament–for those who love Vanderbilt, the month has started very well.',
'lead_paragraph': 'Seventeen years ago, as a sophomore at Vanderbilt, I covered the Southeastern Conference men’s basketball tournament for the student newspaper. We weren’t very good; in my four years, the Commodores reached the N.C.A.A. tournament once, when I was a senior in 1997. We lost in the first round to Xavier.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'For a Vanderbilt Fan, a Sweet Sunday',
'kicker': 'The Quad',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Jenkins, John',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'University of Kentucky',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Vanderbilt University',
'rank': 3,
'major': 'N'}],
'pub_date': '2012-03-11T20:39:17+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'subsection_name': 'Pro Basketball',
'byline': {'original': 'By Tyler Kepner',
'person': [{'firstname': 'Tyler',
'middlename': None,
'lastname': 'Kepner',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5bb1a918-611f-5e3e-9abd-2a7575cdeb17',
'word_count': 374,
'uri': 'nyt://article/5bb1a918-611f-5e3e-9abd-2a7575cdeb17'},
{'abstract': 'Although many programs are in-person, boot camps are now so varied that some take place online or in books. But do they work?',
'web_url': 'https://www.nytimes.com/2014/06/28/your-money/theres-a-boot-camp-for-you.html',
'snippet': 'Although many programs are in-person, boot camps are now so varied that some take place online or in books. But do they work?',
'lead_paragraph': 'IN the face of the yelling, B. J. Perlmutt hesitated, then took the plunge. After all, this was boot camp, and wasn’t the point to break you down and make you a man? He was sweating a little but competently finished the task.',
'print_section': 'B',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-jumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-popup.jpg',
'height': 432,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-master495.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/28/business/28shortcuts-pic1/28shortcuts-pic1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'New Father? New C.E.O.? There’s a Boot Camp for You',
'kicker': None,
'content_kicker': None,
'print_headline': 'New Father? New C.E.O.? There’s a Boot Camp for You',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Physical Education and Training',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Vocational Training',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Adult Education', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Exercise', 'rank': 7, 'major': 'N'}],
'pub_date': '2014-06-27T17:57:59+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Your Money',
'byline': {'original': 'By Alina Tugend',
'person': [{'firstname': 'Alina',
'middlename': None,
'lastname': 'Tugend',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a2400c0f-5321-5a7f-8eb6-df00785e202f',
'word_count': 1387,
'uri': 'nyt://article/a2400c0f-5321-5a7f-8eb6-df00785e202f'}],
[{'abstract': 'This new book of poems celebrates the joyous, ominous, sweet, frustrating experience of being a twin or the parent of twins.',
'web_url': 'https://www.nytimes.com/2012/03/07/books/take-two-by-j-patrick-lewis-and-jane-yolen.html',
'snippet': 'This new book of poems celebrates the joyous, ominous, sweet, frustrating experience of being a twin or the parent of twins.',
'lead_paragraph': 'We are not supposed to judge a book by its cover. But in this case, let’s do just that. The cover of the new poetry collection “Take Two!,” with its twin toddlers bending upside down, polka-dotted tushies in the air, is quite possibly the cutest one to have crossed my desk in the run-up to spring.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/07/books/07childrens/07childrens-articleLarge.jpg',
'height': 312,
'width': 600,
'legacy': {'xlarge': 'images/2012/03/07/books/07childrens/07childrens-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 312},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/07/books/07childrens/07childrens-blog480.jpg',
'height': 250,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/07/books/07childrens/07childrens-jumbo.jpg',
'height': 532,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/07/books/07childrens/07childrens-popup.jpg',
'height': 338,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/07/books/07childrens/07childrens-articleInline.jpg',
'height': 99,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/07/books/07childrens/07childrens-sfSpan.jpg',
'height': 205,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/03/07/books/07childrens/07childrens-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/03/07/books/07childrens/07childrens-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'The Joys of Twins',
'kicker': "Children's Books",
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Lewis, J Patrick', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Blackall, Sophie', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Yolen, Jane', 'rank': 4, 'major': 'N'}],
'pub_date': '2012-03-07T16:01:36+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Books',
'byline': {'original': 'By Pamela Paul',
'person': [{'firstname': 'Pamela',
'middlename': None,
'lastname': 'Paul',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/c032981b-9e63-5a75-8635-759eee32e210',
'word_count': 392,
'uri': 'nyt://article/c032981b-9e63-5a75-8635-759eee32e210'},
{'abstract': 'Twitter is adding a new revenue model, e-commerce, with a service called @earlybird Exclusive Offers.',
'web_url': 'https://bits.blogs.nytimes.com/2010/07/06/twitter-gets-into-e-commerce/',
'snippet': 'Twitter is adding a new revenue model, e-commerce, with a service called @earlybird Exclusive Offers.',
'lead_paragraph': 'Last year, we wrote that Twitter was considering e-commerce as one of its revenue models. On Tuesday it unveiled its first foray into selling products.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Twitter Gets Into E-Commerce',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'E-Commerce',
'rank': 1,
'major': 'N'},
{'name': 'organizations', 'value': 'Twitter', 'rank': 2, 'major': 'N'}],
'pub_date': '2010-07-07T03:20:26+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/e704c5da-da48-565d-ae6c-a9c5c94b023e',
'word_count': 389,
'uri': 'nyt://article/e704c5da-da48-565d-ae6c-a9c5c94b023e'},
{'abstract': 'The acquisition suggests how intent Amazon is to maintain its edge in many corners of e-commerce.',
'web_url': 'https://www.nytimes.com/2010/11/08/technology/08amazon.html',
'snippet': 'The acquisition suggests how intent Amazon is to maintain its edge in many corners of e-commerce.',
'lead_paragraph': 'Amazon.com plans to announce Monday that it will acquire Quidsi, the e-commerce company that runs Diapers.com, for about $540 million, according to a person with knowledge of the deal. ',
'print_section': 'B',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Amazon Has a Reported Deal to Buy Parent of Diapers.com',
'kicker': None,
'content_kicker': None,
'print_headline': 'Amazon Has a Reported Deal To Buy Parent of Diapers.com',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Mergers, Acquisitions and Divestitures',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 3, 'major': 'N'}],
'pub_date': '2010-11-08T03:19:08+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1afed46b-c2bd-5deb-bc97-bc94a7af6bcb',
'word_count': 348,
'uri': 'nyt://article/1afed46b-c2bd-5deb-bc97-bc94a7af6bcb'},
{'abstract': 'It can’t be made often enough.',
'web_url': 'https://douthat.blogs.nytimes.com/2010/02/18/the-case-for-prison-reform-again/',
'snippet': 'It can’t be made often enough.',
'lead_paragraph': 'It can’t be made often enough. In a grim New York Review of Books essay on prison rape, the authors zero in on sexual abuse at juvenile detention centers:',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Case For Prison Reform, Again',
'kicker': 'Ross Douthat',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-02-18T23:58:53+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Blogs',
'byline': {'original': 'By Ross Douthat',
'person': [{'firstname': 'Ross',
'middlename': None,
'lastname': 'Douthat',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/edefa4e6-c209-54bd-bc0b-30c0f733f0e1',
'word_count': 391,
'uri': 'nyt://article/edefa4e6-c209-54bd-bc0b-30c0f733f0e1'},
{'abstract': 'Despite the ebbing of the financial crisis, many small businesses are still unable to get traditional bank loans. But there are several alternative, though expensive, lending sources.',
'web_url': 'https://www.nytimes.com/2012/08/02/business/smallbusiness/for-small-businesses-bank-loan-alternatives.html',
'snippet': 'Despite the ebbing of the financial crisis, many small businesses are still unable to get traditional bank loans. But there are several alternative, though expensive, lending sources.',
'lead_paragraph': 'After years of a small-business credit crisis, conditions seem to have improved. But with the economy still struggling and new regulations meant to eliminate bad lending, bank loans continue to lag.',
'print_section': 'B',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2012/08/02/business/02sbiz/02sbiz-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-blog480.jpg',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-jumbo.jpg',
'height': 678,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-popup.jpg',
'height': 431,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-superJumbo.jpg',
'height': 1356,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-sfSpan.jpg',
'height': 262,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/08/02/business/02sbiz/02sbiz-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/02/business/02sbiz/02sbiz-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'When Banks Won’t Lend, There Are Alternatives, Though Often Expensive',
'kicker': 'Small-Business Guide',
'content_kicker': None,
'print_headline': 'When Banks Won’t Lend, There Are Alternatives, Though Often Expensive',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Small Business',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Credit and Debt', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Entrepreneurship', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Subprime Mortgage Crisis',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Banking and Financial Institutions',
'rank': 5,
'major': 'N'}],
'pub_date': '2012-08-01T16:33:14+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Entrepreneurship',
'byline': {'original': 'By Ian Mount',
'person': [{'firstname': 'Ian',
'middlename': None,
'lastname': 'Mount',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c0c0e612-cc4f-5df3-9e25-921765697930',
'word_count': 1258,
'uri': 'nyt://article/c0c0e612-cc4f-5df3-9e25-921765697930'},
{'abstract': 'Even with the wage increases the chain recently announced, workers often do not get enough hours to make ends meet, leaving them in a precarious financial state.',
'web_url': 'https://www.nytimes.com/2015/02/26/business/next-goal-for-walmart-workers-more-hours.html',
'snippet': 'Even with the wage increases the chain recently announced, workers often do not get enough hours to make ends meet, leaving them in a precarious financial state.',
'lead_paragraph': 'For Anthony Rodriguez, every diaper for his 2-year-old son means less money to put food on the table, or to fill up his car at the gas station. His fiancée, Melinda Prothero, tries to make each diaper last longer, but there’s a limit to that, he says.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-watch308-v2.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-watch268-v2.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-articleLarge.jpg',
'height': 431,
'width': 600,
'legacy': {'xlarge': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 431},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-blog480.jpg',
'height': 345,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-blog427.jpg',
'height': 307,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-tmagArticle.jpg',
'height': 426,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-jumbo.jpg',
'height': 736,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-blog225.jpg',
'height': 162,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-master675.jpg',
'height': 485,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-master180.jpg',
'height': 129,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-popup.jpg',
'height': 467,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-blog533.jpg',
'height': 383,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-tmagSF.jpg',
'height': 260,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-slide.jpg',
'height': 431,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-superJumbo.jpg',
'height': 1472,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-master1050.jpg',
'height': 755,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-master495.jpg',
'height': 356,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-master315.jpg',
'height': 226,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-articleInline.jpg',
'height': 137,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-hpSmall.jpg',
'height': 117,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-blogSmallInline.jpg',
'height': 109,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-mediumFlexible177.jpg',
'height': 127,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/26/business/26WAGEalt/26WAGEalt-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Next Goal for Walmart Workers: More Hours',
'kicker': None,
'content_kicker': None,
'print_headline': 'Next Goal for Walmart Workers: More Hours',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Walmart Stores Inc',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Wages and Salaries',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Working Hours', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Part-Time Employment',
'rank': 6,
'major': 'N'}],
'pub_date': '2015-02-26T01:42:21+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Hiroko Tabuchi',
'person': [{'firstname': 'Hiroko',
'middlename': None,
'lastname': 'Tabuchi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ac073e6d-d228-5466-a63b-cafc9d116151',
'word_count': 1331,
'uri': 'nyt://article/ac073e6d-d228-5466-a63b-cafc9d116151'},
{'abstract': 'Bjarne Melgaard’s latest excursion into over-the-top group shows includes a pair of live tiger cubs.',
'web_url': 'https://www.nytimes.com/2012/05/25/arts/design/bjarne-melgaard-ideal-pole.html',
'snippet': 'Bjarne Melgaard’s latest excursion into over-the-top group shows includes a pair of live tiger cubs.',
'lead_paragraph': 'Ramiken Crucible',
'print_section': 'C',
'print_page': '25',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Bjarne Melgaard: ‘Ideal Pole’',
'kicker': 'Art In Review',
'content_kicker': None,
'print_headline': 'Bjarne Melgaard: ‘Ideal Pole’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Melgaard, Bjarne',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Art', 'rank': 2, 'major': 'N'}],
'pub_date': '2012-05-24T20:23:50+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Arts',
'subsection_name': 'Art & Design',
'byline': {'original': 'By Roberta Smith',
'person': [{'firstname': 'Roberta',
'middlename': None,
'lastname': 'Smith',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/480c9a39-c14d-51c8-811f-5694737b737f',
'word_count': 382,
'uri': 'nyt://article/480c9a39-c14d-51c8-811f-5694737b737f'},
{'abstract': 'Monologue | Monday night on “The Jay Leno Show” on NBC: John McCain’s wife and her daughter, Meghan, have posed for pictures endorsing gay marriage here in California, although Senator McCain — well, he’s still very traditional. He believes marriage should be between an older man and a really hot-looking younger woman.',
'web_url': 'https://laughlines.blogs.nytimes.com/2010/01/26/still-very-traditional/',
'snippet': 'Monologue | Monday night on “The Jay Leno Show” on NBC: John McCain’s wife and her daughter, Meghan, have posed for pictures endorsing gay marriage here in California, although Senator McCain — well, he’s still very traditional. He believes marri...',
'lead_paragraph': 'Monologue | Monday night on “The Jay Leno Show” on NBC: John McCain’s wife and her daughter, Meghan, have posed for pictures endorsing gay marriage here in California, although Senator McCain — well, he’s still very traditional. He believes marriage should be between an older man and a really hot-looking younger woman. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': '‘Still Very Traditional’',
'kicker': 'Laugh Lines',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-01-26T15:14:24+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Week in Review',
'byline': {'original': 'By Alan Lee',
'person': [{'firstname': 'Alan',
'middlename': None,
'lastname': 'Lee',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/8a7a29f9-cf52-51ae-901d-3bfd4baec3bb',
'word_count': 343,
'uri': 'nyt://article/8a7a29f9-cf52-51ae-901d-3bfd4baec3bb'},
{'abstract': 'I’m tired of being told that life as a mom is hard and ugly.',
'web_url': 'https://www.nytimes.com/2018/05/12/opinion/making-motherhood-work-for-me.html',
'snippet': 'I’m tired of being told that life as a mom is hard and ugly.',
'lead_paragraph': 'MONTCLAIR, N.J. — The other day, I was working hard to meet an important deadline, because — like many divorced moms — I sometimes juggle 10 jobs. I didn’t cook breakfast, lunch or dinner. My daughter was what I like to call “good sick.” No fever. No pain. Just listless enough to keep her needs to a minimum. My son had a lot of screen time and four bowls of cereal. Around 10 p.m., we both enjoyed some Ben & Jerry’s. I commented, “This has not been the healthiest day of your life, huh?” He said: “Don’t worry, Mom. We’ll do better tomorrow.”',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-articleLarge.jpg',
'height': 324,
'width': 600,
'legacy': {'xlarge': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 324},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-popup.jpg',
'height': 351,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-blog480.jpg',
'height': 259,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-blog533.jpg',
'height': 288,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-blog427.jpg',
'height': 231,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-tmagSF.jpg',
'height': 196,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-tmagArticle.jpg',
'height': 320,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-slide.jpg',
'height': 324,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-jumbo.jpg',
'height': 553,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-superJumbo.jpg',
'height': 1107,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-blog225.jpg',
'height': 122,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-master1050.jpg',
'height': 568,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-master675.jpg',
'height': 365,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-master495.jpg',
'height': 268,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-master180.jpg',
'height': 97,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-master315.jpg',
'height': 170,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-master768.jpg',
'height': 415,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/05/12/opinion/12caviness/12caviness-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-horizontalMediumAt2X-v2.jpg',
'height': 3243,
'width': 4863,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/05/12/opinion/12caviness/12caviness-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-threeByTwoLargeAt2X-v2.jpg',
'height': 3243,
'width': 4863,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-articleInline.jpg',
'height': 103,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-hpSmall.jpg',
'height': 88,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-blogSmallInline.jpg',
'height': 82,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/merlin_137579025_156b65ef-86a9-4fd9-951c-e1b633ea46f7-mediumFlexible177.jpg',
'height': 96,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/12/opinion/12caviness/12caviness-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Making Motherhood Work for Me',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': "Mother's Day",
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Movies', 'rank': 3, 'major': 'N'},
{'name': 'creative_works',
'value': 'Tully (Movie)',
'rank': 4,
'major': 'N'}],
'pub_date': '2018-05-12T14:00:05+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Ylonda Gault',
'person': [{'firstname': 'Ylonda',
'middlename': None,
'lastname': 'Gault',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/af7a768a-4558-57e5-9a45-c5e47bc33bee',
'word_count': 928,
'uri': 'nyt://article/af7a768a-4558-57e5-9a45-c5e47bc33bee'},
{'abstract': 'In Britain’s celebrity pregnancy economy, Meghan Markle’s unborn child is inspiring wagers, luxury cookie tins and diamond-encrusted jars of diaper rash cream.',
'web_url': 'https://www.nytimes.com/2019/04/19/business/meghan-markle-royal-baby-betting.html',
'snippet': 'In Britain’s celebrity pregnancy economy, Meghan Markle’s unborn child is inspiring wagers, luxury cookie tins and diamond-encrusted jars of diaper rash cream.',
'lead_paragraph': 'On the Paddy Power betting website, more than $325,000 hinged on a single unborn baby.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-articleLarge.jpg',
'height': 900,
'width': 600,
'legacy': {'xlarge': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 900},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-popup.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-blog480.jpg',
'height': 720,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-blog533.jpg',
'height': 800,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-blog427.jpg',
'height': 641,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-tmagSF.jpg',
'height': 543,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-tmagArticle.jpg',
'height': 888,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-slide.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-jumbo.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-superJumbo.jpg',
'height': 2048,
'width': 1366,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-blog225.jpg',
'height': 338,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-master1050.jpg',
'height': 1575,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-master675.jpg',
'height': 1013,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-master495.jpg',
'height': 743,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-master180.jpg',
'height': 270,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-master315.jpg',
'height': 473,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-master768.jpg',
'height': 1152,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-horizontalMediumAt2X.jpg',
'height': 1332,
'width': 2000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-threeByTwoLargeAt2X.jpg',
'height': 1333,
'width': 2000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-hpSmall.jpg',
'height': 245,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-blogSmallInline.jpg',
'height': 227,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/merlin_153717609_43fc2f9b-f246-44d0-822d-bda4fb4c2df8-mediumFlexible177.jpg',
'height': 266,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/04/19/business/19royalbaby-5/19royalbaby-5-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Betting on the Royal Baby',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Royal Baby Boom',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Gambling',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Royal Families', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Markle, Meghan', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Great Britain', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Memorabilia and Souvenirs',
'rank': 6,
'major': 'N'},
{'name': 'persons',
'value': 'Harry, Duke of Sussex',
'rank': 7,
'major': 'N'}],
'pub_date': '2019-04-19T18:03:22+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Tiffany Hsu and Amie Tsang',
'person': [{'firstname': 'Tiffany',
'middlename': None,
'lastname': 'Hsu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Amie',
'middlename': None,
'lastname': 'Tsang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/915d407c-668a-5b35-b434-359dd728f12c',
'word_count': 936,
'uri': 'nyt://article/915d407c-668a-5b35-b434-359dd728f12c'}],
[{'abstract': 'After a six month waiting period, Joel Keller and his wife finalize their adoption of baby Evy.',
'web_url': 'https://parenting.blogs.nytimes.com/2015/07/28/a-babys-adoption-finalized/',
'snippet': 'After a six month waiting period, Joel Keller and his wife finalize their adoption of baby Evy.',
'lead_paragraph': 'As we drove around looking for the county courthouse where we were going to have our finalization hearing, which would make the adoption of our daughter, Evyn, official, we noticed that we were going in circles. It didn’t help that we were running late.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-articleLarge.jpg',
'height': 397,
'width': 600,
'legacy': {'xlarge': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 397},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-blog480.jpg',
'height': 317,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-blog427.jpg',
'height': 282,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-tmagArticle.jpg',
'height': 391,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-jumbo.jpg',
'height': 677,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-blog225.jpg',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-master675.jpg',
'height': 446,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-master180.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-popup.jpg',
'height': 430,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-blog533.jpg',
'height': 352,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-tmagSF.jpg',
'height': 239,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-slide.jpg',
'height': 397,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-superJumbo.jpg',
'height': 1003,
'width': 1517,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-master1050.jpg',
'height': 694,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-master495.jpg',
'height': 327,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-master315.jpg',
'height': 208,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/27/us/motherlode-joelbeach/motherlode-joelbeach-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'A Baby’s Adoption, Finalized',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Adoptions',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'}],
'pub_date': '2015-07-28T14:57:20+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'U.S.',
'byline': {'original': 'By Joel Keller',
'person': [{'firstname': 'Joel',
'middlename': None,
'lastname': 'Keller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4f04322a-795e-5364-a98d-8cc3d23d62bf',
'word_count': 896,
'uri': 'nyt://article/4f04322a-795e-5364-a98d-8cc3d23d62bf'},
{'abstract': 'Now that downloads help track labor and a baby’s development and can help a child fall asleep, one must ask: How did we ever have babies before apps came along?',
'web_url': 'https://www.nytimes.com/2015/08/27/fashion/how-did-we-ever-have-babies-before-apps-came-along.html',
'snippet': 'Now that downloads help track labor and a baby’s development and can help a child fall asleep, one must ask: How did we ever have babies before apps came along?',
'lead_paragraph': 'Three months ago, my wife, Chrysta, and I were driving along Melrose Avenue in Los Angeles when she let out a harrowing cry.',
'print_section': 'D',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-articleLarge.jpg',
'height': 382,
'width': 600,
'legacy': {'xlarge': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 382},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-blog480.jpg',
'height': 306,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-blog427.jpg',
'height': 272,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-tmagArticle.jpg',
'height': 377,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-jumbo.jpg',
'height': 652,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-blog225.jpg',
'height': 143,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-master675.jpg',
'height': 430,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-master180.jpg',
'height': 115,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-popup.jpg',
'height': 414,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-blog533.jpg',
'height': 339,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-tmagSF.jpg',
'height': 230,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-slide.jpg',
'height': 382,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-superJumbo.jpg',
'height': 1304,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-master1050.jpg',
'height': 668,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-master495.jpg',
'height': 315,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-master315.jpg',
'height': 201,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-articleInline.jpg',
'height': 121,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-hpSmall.jpg',
'height': 104,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-blogSmallInline.jpg',
'height': 96,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-mediumFlexible177.jpg',
'height': 113,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/08/27/fashion/27DISRUPTIONS/27DISRUPTIONS-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Pregnancy Apps Do Everything but Ease Labor Pains',
'kicker': 'Disruptions',
'content_kicker': None,
'print_headline': 'The App Becomes a Midwife',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Mobile Applications',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Smartphones', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 6, 'major': 'N'}],
'pub_date': '2015-08-26T18:48:19+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Nick Bilton',
'person': [{'firstname': 'Nick',
'middlename': None,
'lastname': 'Bilton',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ed36606e-1692-54fb-80bd-187684430f88',
'word_count': 907,
'uri': 'nyt://article/ed36606e-1692-54fb-80bd-187684430f88'},
{'abstract': 'Christopher Swain, 47, spent nearly an hour performing a “modified head-up grandma breaststroke” in the Hulk-green, foam-smeared waters of one of North America’s most polluted waterways.',
'web_url': 'https://www.nytimes.com/2015/04/23/nyregion/swimmer-braves-brooklyns-gowanus-canal-a-superfund-site.html',
'snippet': 'Christopher Swain, 47, spent nearly an hour performing a “modified head-up grandma breaststroke” in the Hulk-green, foam-smeared waters of one of North America’s most polluted waterways.',
'lead_paragraph': 'Like most people who have heard anything about the Gowanus Canal — of its murky sludge, oil slicks, raw sewage, carcinogenic chemicals and dying dolphins — Christopher Swain strongly advises against swimming in it. ',
'print_section': 'A',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-superJumbo.jpg',
'height': 947,
'width': 1421,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/23/nyregion/GOWANUS2/GOWANUS2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Swimmer Braves Brooklyn’s Gowanus Canal, a Superfund Site',
'kicker': None,
'content_kicker': None,
'print_headline': 'A Man. A Plan. A Canal. Yuck.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Swain, Christopher',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Water Pollution', 'rank': 3, 'major': 'N'},
{'name': 'glocations',
'value': 'Gowanus Canal (Brooklyn, NY)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Environmental Protection Agency',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Brooklyn (NYC)', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Superfund', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Swimming', 'rank': 8, 'major': 'N'}],
'pub_date': '2015-04-23T01:22:00+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Vivian Yee',
'person': [{'firstname': 'Vivian',
'middlename': None,
'lastname': 'Yee',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2b8e9a24-357f-5a61-9e11-2b3ef4e49e9c',
'word_count': 834,
'uri': 'nyt://article/2b8e9a24-357f-5a61-9e11-2b3ef4e49e9c'},
{'abstract': 'Sexual issues after the birth of a child have not typically been discussed much, but research at the University of Michigan has tried to change that.',
'web_url': 'https://well.blogs.nytimes.com/2013/12/16/restarting-desire-afterward/',
'snippet': 'Sexual issues after the birth of a child have not typically been discussed much, but research at the University of Michigan has tried to change that.',
'lead_paragraph': 'Sex after childbirth? In the weeks after a newborn’s arrival, it may seem as far-fetched as nightclubbing.',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/12/17/science/17PARENTS_SPAN/17PARENTS-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Sex and Intimacy After the Baby Arrives',
'kicker': 'Well',
'content_kicker': None,
'print_headline': 'Restarting Desire, Afterward',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Sex', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-12-16T21:15:11+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Health',
'byline': {'original': 'By Catherine Saint Louis',
'person': [{'firstname': 'Catherine',
'middlename': 'Saint',
'lastname': 'Louis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b079bb7c-8aab-5487-a471-fb04798d9953',
'word_count': 899,
'uri': 'nyt://article/b079bb7c-8aab-5487-a471-fb04798d9953'},
{'abstract': 'The Gowanus neighborhood of Brooklyn is home to a polluted canal, yet it has rising housing values and residents who want to see it prosper without becoming the next Dumbo.',
'web_url': 'https://www.nytimes.com/2014/02/23/nyregion/the-once-and-future-gowanus.html',
'snippet': 'The Gowanus neighborhood of Brooklyn is home to a polluted canal, yet it has rising housing values and residents who want to see it prosper without becoming the next Dumbo.',
'lead_paragraph': 'By a recent and not remotely exacting tally, the Gowanus neighborhood in Brooklyn has at least eight community groups dedicated to its planning and self-analysis: the Gowanus Alliance, the Gowanus Canal Conservancy, Bridging Gowanus, the Gowanus Canal Community Advisory Group, the Gowanus Canal Community Development Corporation, Friends and Residents of Greater Gowanus, Save Gowanus and the Gowanus Ecology Initiative. This does not include the block associations and housing groups that have an interest in the area, nor does it take full measure of the conferencing that Gowanus has inspired. Four years ago, after the Gowanus Canal was designated a Superfund site, a summit called Reconsidering Gowanus was held. Last month, Gowanus was the subject of its own TEDx talks.',
'print_section': 'MB',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/23/nyregion/23BIG1_SPAN/23BIG1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'The Once and Future Gowanus',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Once and Future Gowanus',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Gowanus (Brooklyn, NY)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Real Estate and Housing (Residential)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Affordable Housing',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Gentrification', 'rank': 5, 'major': 'N'}],
'pub_date': '2014-02-22T00:07:37+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Ginia Bellafante',
'person': [{'firstname': 'Ginia',
'middlename': None,
'lastname': 'Bellafante',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/38195739-1b76-564b-8836-9a56d1952c4a',
'word_count': 947,
'uri': 'nyt://article/38195739-1b76-564b-8836-9a56d1952c4a'},
{'abstract': 'The Supreme Court will soon decide whether to hear a case about a class action suit against Facebook that awarded plaintiffs’ lawyers millions while class members got nothing.',
'web_url': 'https://www.nytimes.com/2013/08/13/us/supreme-court-may-hear-novel-class-action-case.html',
'snippet': 'The Supreme Court will soon decide whether to hear a case about a class action suit against Facebook that awarded plaintiffs’ lawyers millions while class members got nothing.',
'lead_paragraph': 'WASHINGTON — “We always knew this settlement would get a tremendous amount of attention,” Scott A. Kamber told the federal appeals court in San Francisco a couple of years ago. ',
'print_section': 'A',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'When Lawyers Cut Their Clients Out of the Deal',
'kicker': None,
'content_kicker': None,
'print_headline': 'When Lawyers Cut Their Class-Action Clients Out of the Deal',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Suits and Litigation (Civil)',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Supreme Court',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Facebook Inc',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Privacy', 'rank': 5, 'major': 'N'}],
'pub_date': '2013-08-12T16:08:09+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Adam Liptak',
'person': [{'firstname': 'Adam',
'middlename': None,
'lastname': 'Liptak',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bf65e643-a8c4-5036-9634-0449e1152251',
'word_count': 951,
'uri': 'nyt://article/bf65e643-a8c4-5036-9634-0449e1152251'},
{'abstract': 'Packaged methods can’t prevent the frustrations of parenting.',
'web_url': 'https://www.nytimes.com/2022/03/09/opinion/tiktok-parenting-philosophy.html',
'snippet': 'Packaged methods can’t prevent the frustrations of parenting.',
'lead_paragraph': 'The parenting method RIE — that stands for Resources for Infant Educarers and is pronounced “rye” — and its most famous practitioner, Janet Lansbury, are having another high-profile moment, with interviews this year by Ezra Klein in The Times and Ariel Levy in The New Yorker. And because I’m old and cranky and have been on the parenting beat for a minute, my gut response to this resurgence is: Again? I remember RIE’s previous moments in the sun, with features in Vanity Fair in 2014 and The Daily Beast in 2017.',
'print_section': 'A',
'print_page': '27',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-superJumbo.jpg',
'height': 2048,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-horizontalMediumAt2X.jpg',
'height': 1867,
'width': 2800,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-threeByTwoLargeAt2X.jpg',
'height': 1867,
'width': 2800,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/09/opinion/09Grose-image/09Grose-image-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'I’ll Say It Again: There’s More Than One Way to Raise Kids Who Thrive',
'kicker': 'Jessica Grose',
'content_kicker': None,
'print_headline': 'There’s More Than One Right Way to Raise Kids',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'internal-sub-only-nl',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Social Media', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Toilet Training', 'rank': 4, 'major': 'N'},
{'name': 'organizations', 'value': 'Reddit Inc', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'TikTok (ByteDance)',
'rank': 6,
'major': 'N'},
{'name': 'organizations', 'value': 'Twitter', 'rank': 7, 'major': 'N'},
{'name': 'persons',
'value': 'Lansbury, Janet (1959- )',
'rank': 8,
'major': 'N'},
{'name': 'glocations', 'value': 'France', 'rank': 9, 'major': 'N'}],
'pub_date': '2022-03-09T11:00:06+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/203c0207-5fb8-5f87-b3a7-f1533e47d571',
'word_count': 1544,
'uri': 'nyt://article/203c0207-5fb8-5f87-b3a7-f1533e47d571'},
{'abstract': 'Many New Yorkers found it difficult to sit still as images of desolate city residents filled their television screens.',
'web_url': 'https://www.nytimes.com/2012/11/05/nyregion/volunteers-and-donations-flock-to-areas-affected-by-hurricane-sandy.html',
'snippet': 'Many New Yorkers found it difficult to sit still as images of desolate city residents filled their television screens.',
'lead_paragraph': 'Surfers with shovels fanned out in the Rockaways in Queens, helping residents clear their homes of mud and sand. An army of cyclists strapped packages of toilet paper to their backs and rode into Belle Harbor, Queens. Children broke open piggy banks, bought batteries and brought them to the parking lot of the Aqueduct Racetrack and Resorts World Casino, where a police inspector and his family set up a donation center for blankets, bottled water and other goods.',
'print_section': 'A',
'print_page': '21',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-articleLarge.jpg',
'height': 360,
'width': 600,
'legacy': {'xlarge': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 360},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/05/nyregion/HELPFUL/HELPFUL-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Volunteers Flock to Disaster Areas, Overwhelming City Relief Centers',
'kicker': None,
'content_kicker': None,
'print_headline': 'Volunteers Flock to Disaster Areas, Overwhelming City Relief Centers',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Volunteers and Community Service',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Bloomberg, Michael R',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Hurricane Sandy (2012)',
'rank': 4,
'major': 'N'}],
'pub_date': '2012-11-05T02:31:38+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Catherine Rampell',
'person': [{'firstname': 'Catherine',
'middlename': None,
'lastname': 'Rampell',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9a15500a-6ce8-52c2-b393-0970b1fb7676',
'word_count': 872,
'uri': 'nyt://article/9a15500a-6ce8-52c2-b393-0970b1fb7676'},
{'abstract': 'Samuel Bailey’s knockout professional debut isn’t so much about the pipeline to incarceration as it is about the toxic masculinity that keeps it flowing.',
'web_url': 'https://www.nytimes.com/2021/02/09/theater/shook-review.html',
'snippet': 'Samuel Bailey’s knockout professional debut isn’t so much about the pipeline to incarceration as it is about the toxic masculinity that keeps it flowing.',
'lead_paragraph': 'Great injustice makes great drama, so it’s no surprise that playwrights have been drawn to the epidemic of incarceration among neglected young men.',
'print_section': 'C',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/02/11/arts/08shook-1/08shook-1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-blog533-v2.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-superJumbo-v2.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-master1050-v2.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-master768-v2.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/02/11/arts/08shook-1/08shook-1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumSquareAt3X-v2.jpg',
'height': 1600,
'width': 1600,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-horizontalMediumAt2X-v2.jpg',
'height': 1600,
'width': 2400,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/02/11/arts/08shook-1/08shook-1-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-threeByTwoLargeAt2X-v3.jpg',
'height': 1407,
'width': 2110,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-threeByTwoMediumAt2X-v3.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-threeByTwoSmallAt2X-v3.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/11/arts/08shook-1/08shook-1-mobileMasterAt3x-v2.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Review: Fathers, but Not Yet Men, in the Prison Drama ‘Shook’',
'kicker': 'Critic’s Pick',
'content_kicker': None,
'print_headline': 'Fathers Who Are Mere Boys',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'Shook (Play)',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'Bailey, Samuel (Playwright)',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Turvey, George', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Papatango Theater Co',
'rank': 5,
'major': 'N'},
{'name': 'glocations',
'value': 'London (England)',
'rank': 6,
'major': 'N'}],
'pub_date': '2021-02-09T18:33:54+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Theater',
'byline': {'original': 'By Jesse Green',
'person': [{'firstname': 'Jesse',
'middlename': None,
'lastname': 'Green',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/fa0e4e27-3883-5b7c-acb7-e1d530770279',
'word_count': 925,
'uri': 'nyt://article/fa0e4e27-3883-5b7c-acb7-e1d530770279'},
{'abstract': 'Residents of the Carolinas face the arduous task of cleaning up, repairing and rebuilding. Here’s how to help.',
'web_url': 'https://www.nytimes.com/2018/09/15/reader-center/how-to-help-hurricane-florence-victims.html',
'snippet': 'Residents of the Carolinas face the arduous task of cleaning up, repairing and rebuilding. Here’s how to help.',
'lead_paragraph': 'As the Carolinas grapple with devastating flooding from Florence, residents face the arduous task of cleaning up, repairing and rebuilding homes and businesses.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-horizontalMediumAt2X.jpg',
'height': 2667,
'width': 4000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-threeByTwoLargeAt2X.jpg',
'height': 2667,
'width': 4000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/merlin_143775696_34798f1a-4948-4365-a521-b9630a463720-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/16/us/16xp-howtohelp-florence-update/16xp-howtohelp-florence-update-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How to Help Those Affected by Florence',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hurricane Florence (2018)',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'AMERICAN RED CROSS',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'United Way of America',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'North Carolina', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'South Carolina', 'rank': 6, 'major': 'N'},
{'name': 'glocations', 'value': 'Virginia', 'rank': 7, 'major': 'N'}],
'pub_date': '2018-09-15T13:29:30+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'Reader Center',
'byline': {'original': 'By Karen Zraick',
'person': [{'firstname': 'Karen',
'middlename': None,
'lastname': 'Zraick',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/50640a42-4d0f-5dad-b200-03ccc634fbba',
'word_count': 1420,
'uri': 'nyt://article/50640a42-4d0f-5dad-b200-03ccc634fbba'}],
[{'abstract': 'The country’s currency has crashed along with its economy, despite an unchanging official exchange rate, transforming economic absurdities into daily hardships.',
'web_url': 'https://www.nytimes.com/2015/10/19/world/americas/few-in-venezuela-want-bolivars-but-no-one-can-spare-a-dime.html',
'snippet': 'The country’s currency has crashed along with its economy, despite an unchanging official exchange rate, transforming economic absurdities into daily hardships.',
'lead_paragraph': 'CARACAS, Venezuela — Pity the bolívar, Venezuela’s currency, named after its independence hero, Simón Bolívar. Even some thieves do not want it anymore.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/19/world/19VENEZUELA1/19VENEZUELA1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Few in Venezuela Want Bolívars, but No One Can Spare a Dime',
'kicker': None,
'content_kicker': None,
'print_headline': 'In Venezuela, Even Thieves Prefer Dollars ',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Venezuela',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Torres, Patricia', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Currency', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Maduro, Nicolas', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Inflation (Economics)',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Black Markets', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 8,
'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 9,
'major': 'N'},
{'name': 'subject', 'value': 'Shortages', 'rank': 10, 'major': 'N'},
{'name': 'subject',
'value': 'International Trade and World Market',
'rank': 11,
'major': 'N'}],
'pub_date': '2015-10-18T09:54:04+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By William Neuman and Patricia Torres',
'person': [{'firstname': 'William',
'middlename': None,
'lastname': 'Neuman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Patricia',
'middlename': None,
'lastname': 'Torres',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/048c1082-9dad-5cbd-aea5-352389ceb932',
'word_count': 1400,
'uri': 'nyt://article/048c1082-9dad-5cbd-aea5-352389ceb932'},
{'abstract': 'Syrian rebels claimed that victims of an attack, shown in dozens of video clips, were killed by chemical weapons on Wednesday east of Damascus, just days after United Nations inspectors arrived in the country to investigate previous attacks said to have involved poison gas.',
'web_url': 'https://thelede.blogs.nytimes.com/2013/08/21/video-and-images-of-victims-of-suspected-syrian-chemical-attack/',
'snippet': 'Syrian rebels claimed that victims of an attack, shown in dozens of video clips, were killed by chemical weapons on Wednesday east of Damascus, just days after United Nations inspectors arrived in the country to investigate previous attacks said t...',
'lead_paragraph': 'Last Updated, 5:40 p.m. | As my colleagues Ben Hubbard and Hwaida Saad report from Beirut, antigovernment activists accused the Syrian government of deploying chemical weapons in a string of towns in the rebellious countryside east of the capital, Damascus, on Wednesday, killing hundreds of men, women and children.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Video Shows Victims of Suspected Syrian Chemical Attack',
'kicker': 'The Lede',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Biological and Chemical Warfare',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Middle East and North Africa Unrest (2010- )',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Damascus (Syria)',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Syria', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-08-21T17:39:43+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Blogs',
'byline': {'original': 'By Liam Stack',
'person': [{'firstname': 'Liam',
'middlename': None,
'lastname': 'Stack',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9a645a97-d8da-5569-b481-f069a4645741',
'word_count': 968,
'uri': 'nyt://article/9a645a97-d8da-5569-b481-f069a4645741'},
{'abstract': 'Sign your John Hancock here. Or is it your Lady Gaga?',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/09/30/identity-crisis/',
'snippet': 'Sign your John Hancock here. Or is it your Lady Gaga?',
'lead_paragraph': 'I was buying a jumbo pack of diapers. Presented with the total on the LCD screen, I swiped my credit card and crafted my new signature in the big, loopy letters I thought might attract a little attention. Instead of ‘‘Alex Kuczynski,’’ I wrote ‘‘Snooki’’ with a heart over the ‘‘i.’’ ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Identity Crisis',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-09-30T12:30:40+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'T Magazine',
'byline': {'original': 'By Alex Kuczynski',
'person': [{'firstname': 'Alex',
'middlename': None,
'lastname': 'Kuczynski',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/73411e61-5a97-59ea-b5c2-b4dc9eaeac59',
'word_count': 900,
'uri': 'nyt://article/73411e61-5a97-59ea-b5c2-b4dc9eaeac59'},
{'abstract': 'This week, answers to readers’ questions about stopping the grabby produce manager, how to tell Auntie she needs a new diaper and other issues.',
'web_url': 'https://www.nytimes.com/2010/04/11/fashion/11social.html',
'snippet': 'This week, answers to readers’ questions about stopping the grabby produce manager, how to tell Auntie she needs a new diaper and other issues.',
'lead_paragraph': 'The produce man at our local grocery has always been friendly. But lately he’s started patting me on the arm and kissing my fingers as I reach past him. I’m a plain, 40-ish mom, and he’s a stocky guy in his 50s. I don’t think he’s attracted to me; it’s just his shtick. I don’t mind chatting, but the physical contact has to stop. How do I cut him off without being rude?',
'print_section': 'ST',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/02/21/fashion/21social-1/21social-1-articleInline.jpg',
'height': 219,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/02/21/fashion/21social-1/21social-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/02/21/fashion/21social-1/21social-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Romance, Aisle Two',
'kicker': 'Social Q’s',
'content_kicker': None,
'print_headline': 'Romance, Aisle 2',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Customs, Etiquette and Manners',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Odors', 'rank': 2, 'major': 'N'}],
'pub_date': '2010-04-09T16:13:12+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Philip Galanes',
'person': [{'firstname': 'Philip',
'middlename': None,
'lastname': 'Galanes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Question',
'_id': 'nyt://article/a6b8372b-4f44-50b8-bab3-4e8617a38567',
'word_count': 832,
'uri': 'nyt://article/a6b8372b-4f44-50b8-bab3-4e8617a38567'},
{'abstract': 'After having her second child, a mother and her peers consider the demands of balancing life with work.',
'web_url': 'https://www.nytimes.com/2014/07/06/jobs/the-not-so-new-mother-finding-balance.html',
'snippet': 'After having her second child, a mother and her peers consider the demands of balancing life with work.',
'lead_paragraph': 'We were all strangers that spring of 1996. Our only connection was that we had all recently given birth at Stanford Hospital in Palo Alto, Calif., and, as recommended by our doctors, had signed up for the New Mother training class. Once a week, we sat in a circle sharing our concerns as a nurse educator led the discussion. It was like those consciousness-raising sessions from the 1960s. But, unlike our mothers who had gathered to secure their place in the world, we gathered to figure out how to be mothers in spite of it. ',
'print_section': 'BU',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-articleLarge.jpg',
'height': 385,
'width': 600,
'legacy': {'xlarge': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 385},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-blog480.jpg',
'height': 308,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-blog427.jpg',
'height': 274,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-tmagArticle.jpg',
'height': 380,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-jumbo.jpg',
'height': 657,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-blog225.jpg',
'height': 144,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-master675.jpg',
'height': 433,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-master180.jpg',
'height': 115,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-popup.jpg',
'height': 417,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-blog533.jpg',
'height': 342,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-tmagSF.jpg',
'height': 232,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-slide.jpg',
'height': 385,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-superJumbo.jpg',
'height': 1313,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-master1050.jpg',
'height': 673,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-master495.jpg',
'height': 317,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-master315.jpg',
'height': 202,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-articleInline.jpg',
'height': 122,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-hpSmall.jpg',
'height': 105,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-blogSmallInline.jpg',
'height': 97,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-mediumFlexible177.jpg',
'height': 113,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/06/business/6-ONWORK/6-ONWORK-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'The Not-So-New Mother, Finding Balance',
'kicker': 'On Work',
'content_kicker': None,
'print_headline': 'The Not-So-New Mother, Finding Balance',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Work-Life Balance',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Labor and Jobs', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'}],
'pub_date': '2014-07-05T13:30:16+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Job Market',
'byline': {'original': 'By Lisen Stromberg',
'person': [{'firstname': 'Lisen',
'middlename': None,
'lastname': 'Stromberg',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4a2a5c27-5cdf-54f0-903f-13039e17ffb8',
'word_count': 1377,
'uri': 'nyt://article/4a2a5c27-5cdf-54f0-903f-13039e17ffb8'},
{'abstract': 'Jack Mannino, who spent time in prison thinking about his life in Georgia, is accused of robbing a Brooklyn bank two weeks ago.',
'web_url': 'https://www.nytimes.com/2012/01/14/nyregion/jack-mannino-the-seven-second-bandit-is-accused-in-brooklyn-robbery.html',
'snippet': 'Jack Mannino, who spent time in prison thinking about his life in Georgia, is accused of robbing a Brooklyn bank two weeks ago.',
'lead_paragraph': 'If the Federal Bureau of Investigation and some medical records are correct, a tough-looking mob associate named Jack Mannino robbed a Brooklyn bank two weeks ago while wearing an adult diaper. ',
'print_section': 'A',
'print_page': '16',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/01/14/nyregion/CRIMESCENE1/CRIMESCENE1-jumbo.jpg',
'height': 1024,
'width': 877,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/01/14/nyregion/CRIMESCENE1/CRIMESCENE1-popup.jpg',
'height': 500,
'width': 428,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/01/14/nyregion/CRIMESCENE1/CRIMESCENE1-articleInline.jpg',
'height': 222,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/01/14/nyregion/CRIMESCENE1/CRIMESCENE1-blogSmallInline.jpg',
'height': 173,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/01/14/nyregion/CRIMESCENE1/CRIMESCENE1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/01/14/nyregion/CRIMESCENE1/CRIMESCENE1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Wanted by the F.B.I., but Still Popular With the Ex-Mother-in-Law',
'kicker': 'Crime Scene',
'content_kicker': None,
'print_headline': 'Wanted by the F.B.I., but Still Popular With the Ex-Mother-in-Law',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Robberies and Thefts',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Bensonhurst (NYC)',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'Brooklyn (NYC)', 'rank': 3, 'major': 'N'},
{'name': 'persons',
'value': 'Gambino Crime Family',
'rank': 4,
'major': 'N'}],
'pub_date': '2012-01-14T02:29:43+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Michael Wilson',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Wilson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0025f7d0-e086-547c-b681-dc3332ac47d7',
'word_count': 902,
'uri': 'nyt://article/0025f7d0-e086-547c-b681-dc3332ac47d7'},
{'abstract': 'Janet Lansbury on an unusual parenting theory that has the potential to improve all your relationships.',
'web_url': 'https://www.nytimes.com/2022/02/15/opinion/ezra-klein-podcast-janet-lansbury.html',
'snippet': 'Janet Lansbury on an unusual parenting theory that has the potential to improve all your relationships.',
'lead_paragraph': 'This is one of those episodes I feel I need to sell. Because on one level, it’s about an unusual theory of parenting known by the acronym RIE — for the nonprofit group Resources for Infant Educarers, which promotes its principles — that I’ve become interested in. But this isn’t a parenting podcast, and I know many of you don’t have young kids. The reason I’m doing this episode is that I think there’s something bigger here.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-horizontalMediumAt2X.jpg',
'height': 2501,
'width': 3751,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-threeByTwoLargeAt2X.jpg',
'height': 2501,
'width': 3751,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/15/opinion/15eks-lansbury-image/15eks-lansbury-image-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'What if We Respected Toddlers as Whole People?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'Lansbury, Janet (1959- )',
'rank': 3,
'major': 'N'}],
'pub_date': '2022-02-15T10:00:09+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': "By ‘The Ezra Klein Show'",
'person': [],
'organization': "The Ezra Klein Show'"},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/5cd62fee-5350-5336-b832-839c52679093',
'word_count': 388,
'uri': 'nyt://article/5cd62fee-5350-5336-b832-839c52679093'},
{'abstract': 'When I became a mom, I quickly realized that the only thing nearly as precious as my bundle of joy was how little time I suddenly had to socialize. Like many new parents, I struggled with that duality—until I started figuring out some parenting strategies that allowed me to take care of my baby while...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/muted-earmuffs-kids-ear-protection-review/',
'snippet': 'When I became a mom, I quickly realized that the only thing nearly as precious as my bundle of joy was how little time I suddenly had to socialize. Like many new parents, I struggled with that duality—until I started figuring out some parenting st...',
'lead_paragraph': 'When I became a mom, I quickly realized that the only thing nearly as precious as my bundle of joy was how little time I suddenly had to socialize. Like many new parents, I struggled with that duality—until I started figuring out some parenting strategies that allowed me to take care of my baby while...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/mutedearmuffs-2048-1180-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/mutedearmuffs-2048-1180-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/mutedearmuffs-2048-1180-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/mutedearmuffs-2048-1180-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'How Muted Kids Earmuffs Saved My Family’s Social Life',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2023-06-26T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/926d19b5-6fd8-5c4b-8dce-9aaad7c55e00',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/926d19b5-6fd8-5c4b-8dce-9aaad7c55e00'},
{'abstract': 'It will be good for the crew to have a working toilet when they’re spending nearly 24 hours in orbit before getting to the space station.',
'web_url': 'https://www.nytimes.com/2021/11/10/science/spacex-toilet-diapers.html',
'snippet': 'It will be good for the crew to have a working toilet when they’re spending nearly 24 hours in orbit before getting to the space station.',
'lead_paragraph': 'The toilet on another Crew Dragon capsule sprang a leak in September during Inspiration4, SpaceX’s first fully private mission. None of the four passengers noticed the problem during the mission, according to Bill Gerstenmaier, a SpaceX vice president.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-horizontalMediumAt2X.jpg',
'height': 3712,
'width': 5568,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-threeByTwoLargeAt2X.jpg',
'height': 3712,
'width': 5568,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/merlin_196866903_65b3e577-8cda-407a-b93a-ac0dd45e74d8-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/08/science/08spacex-landing-toilet/08spacex-landing-toilet-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'SpaceX’s toilet is working fine, thanks for asking.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Space Exploration Technologies Corp',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'National Aeronautics and Space Administration',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Private Spaceflight',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Space and Astronomy',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Rocket Science and Propulsion',
'rank': 6,
'major': 'N'}],
'pub_date': '2021-11-11T00:01:00+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Science',
'byline': {'original': 'By Joey Roulette',
'person': [{'firstname': 'Joey',
'middlename': None,
'lastname': 'Roulette',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/dbaf4f39-7f77-520f-8dca-52f4c946a6cb',
'word_count': 364,
'uri': 'nyt://article/dbaf4f39-7f77-520f-8dca-52f4c946a6cb'},
{'abstract': 'We thought our daughter simply hated using the toilet, but her accidents uncovered a more complicated issue.',
'web_url': 'https://www.nytimes.com/2020/04/17/parenting/potty-training-problem.html',
'snippet': 'We thought our daughter simply hated using the toilet, but her accidents uncovered a more complicated issue.',
'lead_paragraph': 'This story was originally published on June 6, 2019 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-articleLarge.jpg',
'height': 765,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 765},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-popup.jpg',
'height': 500,
'width': 392,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-blog480.jpg',
'height': 612,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-blog533.jpg',
'height': 680,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-blog427.jpg',
'height': 545,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-tmagSF.jpg',
'height': 462,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-tmagArticle.jpg',
'height': 755,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-slide.jpg',
'height': 500,
'width': 392,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-jumbo.jpg',
'height': 1024,
'width': 803,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-superJumbo.jpg',
'height': 2048,
'width': 1606,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-blog225.jpg',
'height': 287,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-master1050.jpg',
'height': 1340,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-master675.jpg',
'height': 861,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-master495.jpg',
'height': 632,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-master180.jpg',
'height': 230,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-master315.jpg',
'height': 402,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-master768.jpg',
'height': 980,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-horizontalMediumAt2X.jpg',
'height': 2531,
'width': 3799,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-threeByTwoLargeAt2X.jpg',
'height': 2532,
'width': 3799,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-articleInline.jpg',
'height': 233,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-hpSmall.jpg',
'height': 200,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-blogSmallInline.jpg',
'height': 185,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-mediumFlexible177.jpg',
'height': 217,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/07/multimedia/07-parenting-potty-training-trouble/07-parenting-potty-training-trouble-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'When Potty Training Reveals a Pooping Problem',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Toilet Training', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 5,
'major': 'N'}],
'pub_date': '2020-04-17T16:24:58+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Paul L. Underwood',
'person': [{'firstname': 'Paul',
'middlename': 'L.',
'lastname': 'Underwood',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cfe5a0db-30f3-5b3d-81f9-d802b0a7e10f',
'word_count': 1508,
'uri': 'nyt://article/cfe5a0db-30f3-5b3d-81f9-d802b0a7e10f'}],
[{'abstract': 'If you hate sand as much as I do, we have advice and gear for making the beach tolerable.',
'web_url': 'https://www.nytimes.com/2019/06/25/parenting/family-beach-gear.html',
'snippet': 'If you hate sand as much as I do, we have advice and gear for making the beach tolerable.',
'lead_paragraph': '[Sign up to receive NYT Parenting in your inbox every Wednesday]',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-articleLarge.jpg',
'height': 493,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 493},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-popup.jpg',
'height': 500,
'width': 609,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-blog480.jpg',
'height': 395,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-blog533.jpg',
'height': 438,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-blog427.jpg',
'height': 351,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-tmagSF.jpg',
'height': 298,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-tmagArticle.jpg',
'height': 487,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-slide.jpg',
'height': 493,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-jumbo.jpg',
'height': 842,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-superJumbo.jpg',
'height': 1683,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-blog225.jpg',
'height': 185,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-master1050.jpg',
'height': 863,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-master675.jpg',
'height': 555,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-master495.jpg',
'height': 407,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-master180.jpg',
'height': 148,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-master315.jpg',
'height': 259,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-master768.jpg',
'height': 631,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-horizontalMediumAt2X.jpg',
'height': 2333,
'width': 3500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-threeByTwoLargeAt2X.jpg',
'height': 2332,
'width': 3500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-articleInline.jpg',
'height': 156,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-hpSmall.jpg',
'height': 134,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-blogSmallInline.jpg',
'height': 124,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/98fe9d38b294456e99b90f52aa213ccd-mediumFlexible177.jpg',
'height': 145,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/multimedia/26-parenting-beach/26-parenting-beach-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Dreading Your Next Trip to the Beach? Read This',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2019-06-25T20:42:17+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/46e12870-4797-5862-94b0-b6291775e7b3',
'word_count': 1477,
'uri': 'nyt://article/46e12870-4797-5862-94b0-b6291775e7b3'},
{'abstract': 'Color-code their clothing. Paint nail polish onto a single toe. Treat them as the individuals they are.',
'web_url': 'https://www.nytimes.com/2021/01/05/magazine/how-to-tell-identical-twins-apart.html',
'snippet': 'Color-code their clothing. Paint nail polish onto a single toe. Treat them as the individuals they are.',
'lead_paragraph': '“It’s much harder to tell the difference when they’re babies,” says Darcy Perrault, an architect from Seattle who runs a Facebook group for parents of identical twins. She and her husband, Alex, have a 12-year-old son and identical twin girls a year younger. Perrault considered bringing a permanent marker to the hospital when the girls were born. “If we really couldn’t tell them apart,” she says, “we’d write initials on the bottom of their feet.” Tagging turned out to be unnecessary; the couple identified the girls based on their weights and slight variations in ear shape.',
'print_section': 'MM',
'print_page': '15',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-articleLarge-v2.jpg',
'height': 631,
'width': 600,
'legacy': {'xlarge': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 631},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-popup-v2.jpg',
'height': 500,
'width': 476,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-blog480-v2.jpg',
'height': 504,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-blog533-v2.jpg',
'height': 560,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-blog427-v2.jpg',
'height': 449,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-tmagSF-v2.jpg',
'height': 380,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-tmagArticle-v2.jpg',
'height': 622,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-slide-v2.jpg',
'height': 500,
'width': 476,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-jumbo-v2.jpg',
'height': 661,
'width': 629,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-superJumbo-v2.jpg',
'height': 661,
'width': 629,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-blog225-v2.jpg',
'height': 236,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-master495-v2.jpg',
'height': 520,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-master180-v2.jpg',
'height': 189,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-master315-v2.jpg',
'height': 331,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumSquareAt3X-v2.jpg',
'height': 629,
'width': 629,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-largeHorizontalJumbo.jpg',
'height': 576,
'width': 864,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-horizontalMediumAt2X.jpg',
'height': 576,
'width': 864,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-threeByTwoLargeAt2X-v2.jpg',
'height': 558,
'width': 837,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-threeByTwoMediumAt2X-v2.jpg',
'height': 558,
'width': 837,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-articleInline-v2.jpg',
'height': 200,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-hpSmall-v2.jpg',
'height': 171,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-blogSmallInline-v2.jpg',
'height': 159,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mediumFlexible177-v2.jpg',
'height': 186,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-videoSixteenByNineJumbo1600.jpg',
'height': 486,
'width': 864,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-facebookJumbo.jpg',
'height': 452,
'width': 864,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/10/magazine/10mag-Tip-1/10mag-Tip-1-mobileMasterAt3x-v2.jpg',
'height': 661,
'width': 629,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Tell Identical Twins Apart',
'kicker': 'Tip ',
'content_kicker': None,
'print_headline': 'How to Tell Identical Twins Apart',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Content Type: Service',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Twins', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'}],
'pub_date': '2021-01-05T10:00:04+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Malia Wollan',
'person': [{'firstname': 'Malia',
'middlename': None,
'lastname': 'Wollan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e141824e-457b-5499-bc30-29e66ffcbeaa',
'word_count': 382,
'uri': 'nyt://article/e141824e-457b-5499-bc30-29e66ffcbeaa'},
{'abstract': 'Moving the entourage that is my family is no small logistical feat. And I have to marvel at how my role — once the bachelor whose only worry was finding a window seat — has changed.',
'web_url': 'https://rendezvous.blogs.nytimes.com/2012/12/20/home-for-the-holidays-when-your-native-country-is-the-one-that-feels-foreign/',
'snippet': 'Moving the entourage that is my family is no small logistical feat. And I have to marvel at how my role — once the bachelor whose only worry was finding a window seat — has changed.',
'lead_paragraph': 'Have you had a memorable holiday away from home? Tell us your stories. We’ll post our favorites on IHT Rendezvous during these last weeks of 2012. Here is one:',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-jumbo.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-popup.jpg',
'height': 500,
'width': 333,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-superJumbo.jpg',
'height': 2048,
'width': 1365,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-articleInline-v2.jpg',
'height': 131,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/20/blogs/20rdv-home-holidays-guest-1-pic/20rdv-home-holidays-guest-1-pic-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Home for the Holidays: When Your Native Country Is the One That Feels ‘Foreign’',
'kicker': 'IHT Rendezvous',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'Israel', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 4, 'major': 'N'}],
'pub_date': '2012-12-20T08:00:21+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'World',
'byline': {'original': 'By Gary Rashba',
'person': [{'firstname': 'Gary',
'middlename': None,
'lastname': 'Rashba',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/499e6085-3417-58d4-a41c-72cc402bb9fa',
'word_count': 944,
'uri': 'nyt://article/499e6085-3417-58d4-a41c-72cc402bb9fa'},
{'abstract': 'New leaders of struggling companies can expect a shorter leash — and a brief tenure if they can’t revive growth.',
'web_url': 'https://www.nytimes.com/2018/10/23/business/dealbook/ceo-tenure-kimberly-clark.html',
'snippet': 'New leaders of struggling companies can expect a shorter leash — and a brief tenure if they can’t revive growth.',
'lead_paragraph': 'Get the DealBook newsletter to make sense of major business and policy headlines — and the power-brokers who shape them.__________',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-superJumbo.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-master768.jpg',
'height': 513,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/merlin_114225889_0bb7902b-acec-4a24-98f0-a82a8118908a-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/24/business/24db-viewsceos/24db-viewsceos-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Many C.E.O. Tenures Are Getting Shorter',
'kicker': 'Breakingviews',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Appointments and Executive Changes',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Flannery, John L', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Nooyi, Indra K', 'rank': 4, 'major': 'N'}],
'pub_date': '2018-10-23T13:11:48+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'DealBook',
'byline': {'original': 'By Lauren Silva Laughlin',
'person': [{'firstname': 'Lauren',
'middlename': 'Silva',
'lastname': 'Laughlin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ae20cb42-19fb-506b-90ad-74d9a6c03e09',
'word_count': 359,
'uri': 'nyt://article/ae20cb42-19fb-506b-90ad-74d9a6c03e09'},
{'abstract': 'Investigators are searching for the parents of the infant, who was seen floating in the water by tourists from Oklahoma. Police failed to revive him.',
'web_url': 'https://www.nytimes.com/2018/08/05/nyregion/body-of-baby-boy-washes-up-under-the-brooklyn-bridge-police-say.html',
'snippet': 'Investigators are searching for the parents of the infant, who was seen floating in the water by tourists from Oklahoma. Police failed to revive him.',
'lead_paragraph': 'A family visiting New York City from Oklahoma made a shocking discovery on Sunday — the body of an infant floating in the East River in the shadow of the Brooklyn Bridge.',
'print_section': 'A',
'print_page': '20',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-articleLarge.jpg',
'height': 389,
'width': 600,
'legacy': {'xlarge': 'images/2018/08/06/nyregion/06baby1/06baby1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 389},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-popup.jpg',
'height': 422,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-blog480.jpg',
'height': 312,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-blog533.jpg',
'height': 346,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-blog427.jpg',
'height': 277,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-tmagSF.jpg',
'height': 235,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-tmagArticle.jpg',
'height': 384,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-slide.jpg',
'height': 389,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-jumbo.jpg',
'height': 665,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-superJumbo.jpg',
'height': 1329,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-blog225.jpg',
'height': 146,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-master1050.jpg',
'height': 681,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-master675.jpg',
'height': 438,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-master495.jpg',
'height': 321,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-master180.jpg',
'height': 117,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-master315.jpg',
'height': 204,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-master768.jpg',
'height': 498,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/08/06/nyregion/06baby1/06baby1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-horizontalMediumAt2X.jpg',
'height': 3452,
'width': 5175,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/08/06/nyregion/06baby1/06baby1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-threeByTwoLargeAt2X.jpg',
'height': 3452,
'width': 5175,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-articleInline.jpg',
'height': 123,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-hpSmall.jpg',
'height': 106,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-blogSmallInline.jpg',
'height': 98,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-mediumFlexible177.jpg',
'height': 115,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/06/nyregion/06baby1/06baby1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Body of Baby Boy Washes Up Under Brooklyn Bridge, Police Say',
'kicker': None,
'content_kicker': None,
'print_headline': 'Body of Baby Washes Up Under Bridge, Police Say',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'East River (NYC)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Campbell, Diana', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Campbell, Monte', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 5,
'major': 'N'}],
'pub_date': '2018-08-06T00:19:22+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Ashley Southall and Sean Piccoli',
'person': [{'firstname': 'Ashley',
'middlename': None,
'lastname': 'Southall',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Sean',
'middlename': None,
'lastname': 'Piccoli',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/645112ce-d9e8-5a2e-bc51-938696ddfed3',
'word_count': 366,
'uri': 'nyt://article/645112ce-d9e8-5a2e-bc51-938696ddfed3'},
{'abstract': 'The hapless, bumbling father is a stock character in product marketing. The so-called daddy bloggers who attended the recent Dad 2.0 Summit are pushing to change that.',
'web_url': 'https://www.nytimes.com/2013/02/24/business/fathers-seek-advertising-that-does-not-ridicule.html',
'snippet': 'The hapless, bumbling father is a stock character in product marketing. The so-called daddy bloggers who attended the recent Dad 2.0 Summit are pushing to change that.',
'lead_paragraph': 'THE hapless, bumbling father is a stock character in product marketing. He makes breakfast for dinner and is incapable of handling, or sometimes even noticing, a soggy diaper. He tries desperately to hide the crumb-strewn, dirt-streaked evidence of his poor parenting before the mother gets home.',
'print_section': 'BU',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-articleLarge-v2.jpg',
'height': 370,
'width': 600,
'legacy': {'xlarge': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 370},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-blog480-v2.jpg',
'height': 296,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-blog427-v2.jpg',
'height': 263,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-tmagArticle-v2.jpg',
'height': 365,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-jumbo-v2.jpg',
'height': 631,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-blog225-v2.jpg',
'height': 139,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-popup-v2.jpg',
'height': 401,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-blog533-v2.jpg',
'height': 329,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-tmagSF-v2.jpg',
'height': 223,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-slide-v2.jpg',
'height': 370,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-superJumbo-v2.jpg',
'height': 1263,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-articleInline-v2.jpg',
'height': 117,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-hpSmall-v2.jpg',
'height': 101,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-blogSmallInline-v2.jpg',
'height': 93,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-sfSpan-v2.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-hpLarge-v2.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-videoHpMedium-v2.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/24/business/24-DADS-JP/24-DADS-JP-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Don’t Call Him Mom, or an Imbecile',
'kicker': None,
'content_kicker': None,
'print_headline': 'Neither Moms Nor Imbeciles',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Men and Boys',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Seligson, Hannah', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 4,
'major': 'N'},
{'name': 'organizations', 'value': 'Unilever NV', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Procter & Gamble Company',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Toyota Motor Corporation',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Kimberly-Clark Corporation',
'rank': 8,
'major': 'N'},
{'name': 'subject',
'value': 'Blogs and Blogging (Internet)',
'rank': 9,
'major': 'N'}],
'pub_date': '2013-02-23T19:56:03+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Business Day',
'byline': {'original': 'By Hannah Seligson',
'person': [{'firstname': 'Hannah',
'middlename': None,
'lastname': 'Seligson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d3c54e1f-d5e4-5dfe-a486-f13653ede798',
'word_count': 2085,
'uri': 'nyt://article/d3c54e1f-d5e4-5dfe-a486-f13653ede798'},
{'abstract': 'Reusable menstrual pads are often tolerated just fine. But stay away from sea sponges!',
'web_url': 'https://www.nytimes.com/2019/01/17/well/are-reusable-feminine-cloths-safe.html',
'snippet': 'Reusable menstrual pads are often tolerated just fine. But stay away from sea sponges!',
'lead_paragraph': "Are there any health risks associated with reusable-cloth menstrual pads? I recently read an article about cups, tampons and sponges, but was disappointed that the article didn't touch on cloth pads. I currently use them but haven't found much information on them from health professionals.",
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-articleLarge.jpg',
'height': 372,
'width': 600,
'legacy': {'xlarge': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 372},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-popup.jpg',
'height': 403,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-blog480.jpg',
'height': 298,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-blog533.jpg',
'height': 330,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-blog427.jpg',
'height': 265,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-tmagSF.jpg',
'height': 224,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-tmagArticle.jpg',
'height': 367,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-slide.jpg',
'height': 372,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-jumbo.jpg',
'height': 620,
'width': 1000,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-superJumbo.jpg',
'height': 620,
'width': 1000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-blog225.jpg',
'height': 140,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-master675.jpg',
'height': 419,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-master495.jpg',
'height': 307,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-master180.jpg',
'height': 112,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-master315.jpg',
'height': 195,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-master768.jpg',
'height': 476,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-largeHorizontalJumbo.jpg',
'height': 620,
'width': 929,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-horizontalMediumAt2X.jpg',
'height': 620,
'width': 929,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-threeByTwoLargeAt2X.jpg',
'height': 620,
'width': 929,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-threeByTwoMediumAt2X.jpg',
'height': 620,
'width': 929,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-articleInline.jpg',
'height': 118,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-hpSmall.jpg',
'height': 101,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-blogSmallInline.jpg',
'height': 94,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-mediumFlexible177.jpg',
'height': 110,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-videoSixteenByNineJumbo1600.jpg',
'height': 562,
'width': 1000,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/merlin_149287209_74cd957f-d86f-47e6-adfc-4c1f24bcbeed-facebookJumbo.jpg',
'height': 524,
'width': 1000,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/17/world/17ask-reusableproducts/17ask-reusableproducts-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'}],
'headline': {'main': 'Are Reusable Feminine Cloths Safe?',
'kicker': 'You Asked',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hygiene and Cleanliness',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Menstruation', 'rank': 2, 'major': 'N'}],
'pub_date': '2019-01-17T16:36:56+0000',
'document_type': 'article',
'news_desk': 'Smarter Living',
'section_name': 'Well',
'byline': {'original': 'By Jen Gunter',
'person': [{'firstname': 'Jen',
'middlename': None,
'lastname': 'Gunter',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0de4c7ba-9f25-5dca-9298-8ed7cc282cb5',
'word_count': 398,
'uri': 'nyt://article/0de4c7ba-9f25-5dca-9298-8ed7cc282cb5'},
{'abstract': 'A good high chair should be simple to use and, above all, easy to clean. We tested 25 high chairs with infants and toddlers—including cleaning up dried smears of pureed sweet potato and smushed Goldfish crackers. And we’re confident that the IKEA Antilop will make mealtimes easier than using high chairs costing 10 times as...',
'web_url': 'https://www.nytimes.com/wirecutter/reviews/best-high-chairs/',
'snippet': 'A good high chair should be simple to use and, above all, easy to clean. We tested 25 high chairs with infants and toddlers—including cleaning up dried smears of pureed sweet potato and smushed Goldfish crackers. And we’re confident that the IKEA ...',
'lead_paragraph': 'A good high chair should be simple to use and, above all, easy to clean. We tested 25 high chairs with infants and toddlers—including cleaning up dried smears of pureed sweet potato and smushed Goldfish crackers. And we’re confident that the IKEA Antilop will make mealtimes easier than using high chairs costing 10 times as...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/high-chair-2048px-4207-3x2-1.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/high-chair-2048px-4207-3x2-1.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/high-chair-2048px-4207-3x2-1.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/06/high-chair-2048px-4207-3x2-1.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best High Chairs',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2017-07-21T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/f1f6ab91-9162-5229-afd7-32288ebab287',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/f1f6ab91-9162-5229-afd7-32288ebab287'},
{'abstract': 'Wear a face mask, surgical gloves and a uniform or extra-large T-shirt over your clothes that you can peel off.',
'web_url': 'https://www.nytimes.com/2020/06/16/magazine/how-to-clean-up-after-others.html',
'snippet': 'Wear a face mask, surgical gloves and a uniform or extra-large T-shirt over your clothes that you can peel off.',
'lead_paragraph': '“Protect yourself,” says Vanessa Oltmann, 63, who cleans vacation rentals in Folly Beach, S.C., and during her free time walks along the shore, picking up garbage left by beachgoers. The coronavirus has meant less paid cleaning work and much more detritus on the beach. “It’s just everywhere,” Oltmann says. “I don’t understand it.” If you’re cleaning up after strangers in a pandemic, take precautions: Wear a face mask, surgical gloves and a uniform or extra-large T-shirt over your clothes that you can peel off and put directly in the wash when you’re done. After every job, clean and sanitize your equipment, whether mops and brooms or garbage pickers and five-gallon buckets.',
'print_section': 'MM',
'print_page': '17',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-jumbo.jpg',
'height': 900,
'width': 900,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-superJumbo.jpg',
'height': 900,
'width': 900,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumSquareAt3X.jpg',
'height': 900,
'width': 900,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-horizontalMediumAt2X.jpg',
'height': 1240,
'width': 1859,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-threeByTwoLargeAt2X-v2.jpg',
'height': 956,
'width': 1434,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-threeByTwoMediumAt2X-v2.jpg',
'height': 956,
'width': 1434,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/21/magazine/21Mag-Tip-01/21Mag-Tip-01-mobileMasterAt3x.jpg',
'height': 900,
'width': 900,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Clean Up After Others',
'kicker': 'Tip ',
'content_kicker': None,
'print_headline': 'How to Clean Up After Others',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Protective Clothing and Gear',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Smoking and Tobacco',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Beaches', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Quarantines', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 7,
'major': 'N'}],
'pub_date': '2020-06-16T09:00:01+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Malia Wollan',
'person': [{'firstname': 'Malia',
'middlename': None,
'lastname': 'Wollan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/eb47817e-bafc-5f74-a052-3c6436731438',
'word_count': 350,
'uri': 'nyt://article/eb47817e-bafc-5f74-a052-3c6436731438'},
{'abstract': 'Crisis pregnancy centers, which encourage women to give birth, prepare for a post-Roe world in a state that is considered a bastion of abortion rights.',
'web_url': 'https://www.nytimes.com/2022/06/25/nyregion/crisis-pregnancy-centers-abortion-nyc.html',
'snippet': 'Crisis pregnancy centers, which encourage women to give birth, prepare for a post-Roe world in a state that is considered a bastion of abortion rights.',
'lead_paragraph': 'Patricia Clinton was walking up East 149th Street in the South Bronx one afternoon last fall, ruminating over her decision to end an unexpected pregnancy. She was five weeks along, already a single parent to two children, and her finances were unstable. She wasn’t sure if the father of her unborn child would remain in the picture and didn’t think she could handle feeding a third mouth on her own.',
'print_section': 'MB',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-horizontalMediumAt2X.jpg',
'height': 4000,
'width': 6000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-threeByTwoLargeAt2X.jpg',
'height': 3490,
'width': 5235,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/17/nyregion/ny-birthcenters-promo/ny-birthcenters1-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'In New York, Anti-Abortion Centers Outnumber Abortion Clinics',
'kicker': None,
'content_kicker': None,
'print_headline': 'Anti-Abortion Centers Prepare for a Post-Roe World',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Abortion', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'Bronx (NYC)', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 4, 'major': 'N'},
{'name': 'glocations',
'value': 'New York State',
'rank': 5,
'major': 'N'}],
'pub_date': '2022-06-25T09:00:21+0000',
'document_type': 'article',
'news_desk': 'Metropolitan',
'section_name': 'New York',
'byline': {'original': 'By Kimiko de Freytas-Tamura and Jeenah Moon',
'person': [{'firstname': 'Kimiko',
'middlename': None,
'lastname': 'de Freytas-Tamura',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Jeenah',
'middlename': None,
'lastname': 'Moon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d670d3e5-8e6d-55d9-830d-502fbd1a39aa',
'word_count': 1905,
'uri': 'nyt://article/d670d3e5-8e6d-55d9-830d-502fbd1a39aa'}],
[{'abstract': 'Make sure your things look well-cared for. Tell the story if you have a specific, compelling monetary need.',
'web_url': 'https://www.nytimes.com/2017/10/13/magazine/how-to-pawn-valuables.html',
'snippet': 'Make sure your things look well-cared for. Tell the story if you have a specific, compelling monetary need.',
'lead_paragraph': '“Think of us as a bank of last resort,” says Lou Tansky, the owner of Uncle Ben’s Pawn Shop in Cleveland. To pawn something, you must be an adult with valid identification, and the item must have some value as collateral. You don’t need good credit, income or a bank account. Commonly pawned items include jewelry, electronics, musical instruments and firearms, but the possibilities are wide-ranging: Tansky has accepted a pocketknife and knows a broker who was approached about pawning a Learjet. Be aware of state-specific prohibitions; in Delaware, for example, it is illegal to pawn artificial limbs and wheelchairs. “I don’t want anybody’s stuff,” Tansky says. Most brokers make the bulk of their income from interest, not from reselling things.',
'print_section': 'MM',
'print_page': '25',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-articleLarge.jpg',
'height': 1056,
'width': 600,
'legacy': {'xlarge': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 1056},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-popup.jpg',
'height': 500,
'width': 285,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-blog480.jpg',
'height': 845,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-blog533.jpg',
'height': 938,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-blog427.jpg',
'height': 752,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-tmagSF.jpg',
'height': 637,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-tmagArticle.jpg',
'height': 1042,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-slide.jpg',
'height': 500,
'width': 285,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-jumbo.jpg',
'height': 1024,
'width': 582,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-superJumbo.jpg',
'height': 2048,
'width': 1164,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-blog225.jpg',
'height': 396,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-master1050.jpg',
'height': 1848,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-master675.jpg',
'height': 1188,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-master495.jpg',
'height': 871,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-master180.jpg',
'height': 317,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-master315.jpg',
'height': 554,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-master768.jpg',
'height': 1352,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-articleInline.jpg',
'height': 334,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-hpSmall.jpg',
'height': 287,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-blogSmallInline.jpg',
'height': 266,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-mediumFlexible177.jpg',
'height': 312,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/10/15/magazine/15tip/15mag-15tip-t_CA0-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How to Pawn Valuables',
'kicker': 'Tip',
'content_kicker': None,
'print_headline': 'How to Pawn Valuables',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Pawnbroking',
'rank': 1,
'major': 'N'}],
'pub_date': '2017-10-13T09:00:21+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Malia Wollan',
'person': [{'firstname': 'Malia',
'middlename': None,
'lastname': 'Wollan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0d8e636a-4bf6-53d2-97e5-bcdc02b50465',
'word_count': 392,
'uri': 'nyt://article/0d8e636a-4bf6-53d2-97e5-bcdc02b50465'},
{'abstract': 'The promise of travel and of not being home and on duty seduced the writer, a new father. His trip became a stand-in for everything he had lost.',
'web_url': 'https://www.nytimes.com/2016/06/05/travel/family-holidays-parenting-fatherhood.html',
'snippet': 'The promise of travel and of not being home and on duty seduced the writer, a new father. His trip became a stand-in for everything he had lost.',
'lead_paragraph': 'In retrospect, maybe I placed too much significance on that first trip alone after my son was born. For the first year of his life I had barely spent a single night away from him, so it was only natural that I saw this trip as a precious chance to be, however briefly, a sane adult again. The trip was only for one night to a not-very-glamorous city where I would stay in a not-very-glamorous hotel and deliver a talk in the evening. The place itself did not matter — it could have been anywhere. Instead, it was the promise of travel, of not being home and on duty that seduced me.',
'print_section': 'TR',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-articleLarge-v2.jpg',
'height': 800,
'width': 600,
'legacy': {'xlarge': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 800},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-popup-v2.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-blog480-v2.jpg',
'height': 640,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-blog533-v2.jpg',
'height': 711,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-blog427-v2.jpg',
'height': 569,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-tmagSF-v2.jpg',
'height': 483,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-tmagArticle-v2.jpg',
'height': 789,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-slide-v2.jpg',
'height': 500,
'width': 375,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-jumbo-v2.jpg',
'height': 1024,
'width': 768,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-superJumbo-v2.jpg',
'height': 2048,
'width': 1536,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-blog225-v2.jpg',
'height': 300,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-master1050-v2.jpg',
'height': 1400,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-master675-v2.jpg',
'height': 900,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-master495-v2.jpg',
'height': 660,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-master180-v2.jpg',
'height': 240,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-master315-v2.jpg',
'height': 420,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-master768-v2.jpg',
'height': 1024,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-smallSquare168-v3.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-smallSquare252-v3.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-square320-v3.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-moth-v3.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-filmstrip-v3.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-square640-v3.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-mediumSquare149-v3.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-sfSpan-v3.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-largeHorizontal375-v3.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-largeHorizontalJumbo-v3.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-hpLarge-v3.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-largeWidescreen573-v3.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-largeWidescreen1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-thumbWide-v4.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-thumbWide-v4.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoThumb-v4.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoLarge-v4.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-mediumThreeByTwo210-v4.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-mediumThreeByTwo225-v4.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-mediumThreeByTwo440-v4.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-mediumThreeByTwo252-v4.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-mediumThreeByTwo378-v4.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-articleInline-v2.jpg',
'height': 253,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-hpSmall-v2.jpg',
'height': 217,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-blogSmallInline-v2.jpg',
'height': 201,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-mediumFlexible177-v2.jpg',
'height': 236,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoHpMedium-v3.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine600-v3.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine540-v3.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine495-v3.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine390-v3.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine480-v3.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine310-v3.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine225-v3.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine96-v3.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine768-v3.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNine150-v3.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoSixteenByNineJumbo1600-v3.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-facebookJumbo-v3.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-watch268-v3.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/05/travel/05ESSAYJP/05ESSAYJP-verticalTwoByThree735-v3.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'In Search of Lost Me Time',
'kicker': 'Essay',
'content_kicker': None,
'print_headline': 'On the Road, Babyless',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Larsen, Reif',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'}],
'pub_date': '2016-05-31T21:45:04+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Reif Larsen',
'person': [{'firstname': 'Reif',
'middlename': None,
'lastname': 'Larsen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ba60aa7a-b4a7-55d7-b1c0-c2de29d46b8b',
'word_count': 1389,
'uri': 'nyt://article/ba60aa7a-b4a7-55d7-b1c0-c2de29d46b8b'},
{'abstract': 'Plan now for a future emergency.',
'web_url': 'https://www.nytimes.com/2022/06/29/climate/emergency-go-bag.html',
'snippet': 'Plan now for a future emergency.',
'lead_paragraph': 'This article was originally published in the subscriber-only Well newsletter.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-articleLarge-v5.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-articleLarge-v5.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-popup-v5.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-blog480-v5.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-blog533-v5.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-blog427-v5.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-tmagSF-v5.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-tmagArticle-v5.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-slide-v5.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-jumbo-v5.jpg',
'height': 1023,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-superJumbo-v5.jpg',
'height': 1980,
'width': 1981,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-blog225-v5.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-master1050-v5.jpg',
'height': 1049,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-master675-v5.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-master495-v5.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-master180-v5.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-master315-v5.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-master768-v5.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-square320-v5.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-moth-v5.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-filmstrip-v5.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-square640-v5.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumSquare149-v5.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumSquareAt3X-v5.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-sfSpan-v5.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-largeHorizontal375-v5.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-largeHorizontalJumbo-v5.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-horizontalMediumAt2X-v5.jpg',
'height': 1321,
'width': 1981,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-hpLarge-v5.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-largeWidescreen573-v5.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-largeWidescreen1050-v5.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-thumbWide-v5.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-thumbWide-v5.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoThumb-v5.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoLarge-v5.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumThreeByTwo210-v5.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumThreeByTwo225-v5.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumThreeByTwo440-v5.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumThreeByTwo252-v5.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumThreeByTwo378-v5.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-threeByTwoLargeAt2X-v5.jpg',
'height': 1321,
'width': 1981,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-threeByTwoMediumAt2X-v5.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-threeByTwoSmallAt2X-v5.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-articleInline-v5.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-hpSmall-v5.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-blogSmallInline-v5.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mediumFlexible177-v5.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-miniMoth-v5.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-windowsTile336H-v5.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-videoFifteenBySeven1305-v5.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-watch308-v5.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-watch268-v5.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-verticalTwoByThree735-v5.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/09/02/well/02well-nl-gobag/02well-nl-gobag-mobileMasterAt3x-v5.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'What should my ‘go bag’ contain?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Content Type: Service',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Disasters and Emergencies',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Hurricanes and Tropical Storms',
'rank': 3,
'major': 'N'}],
'pub_date': '2022-06-29T17:04:34+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'Climate',
'byline': {'original': 'By Tara Parker-Pope',
'person': [{'firstname': 'Tara',
'middlename': None,
'lastname': 'Parker-Pope',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e8cab7f0-6b50-50fa-be92-a1050dae2ef5',
'word_count': 404,
'uri': 'nyt://article/e8cab7f0-6b50-50fa-be92-a1050dae2ef5'},
{'abstract': 'Has there ever been a better year to consider donating to a good cause for the holidays?',
'web_url': 'https://www.nytimes.com/interactive/2021/12/15/opinion/charitable-gift-ideas.html',
'snippet': 'Has there ever been a better year to consider donating to a good cause for the holidays?',
'lead_paragraph': 'Has there ever been a better year to consider donating to a good cause for the holidays?',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-articleLarge.jpg',
'height': 418,
'width': 600,
'legacy': {'xlarge': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 418},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-popup.jpg',
'height': 453,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-blog480.jpg',
'height': 334,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-blog533.jpg',
'height': 371,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-blog427.jpg',
'height': 297,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-tmagSF.jpg',
'height': 252,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-tmagArticle.jpg',
'height': 412,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-slide.jpg',
'height': 418,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-jumbo.jpg',
'height': 713,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-superJumbo.jpg',
'height': 1426,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-blog225.jpg',
'height': 157,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-master1050.jpg',
'height': 731,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-master675.jpg',
'height': 470,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-master495.jpg',
'height': 345,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-master180.jpg',
'height': 125,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-master315.jpg',
'height': 219,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-master768.jpg',
'height': 535,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumSquareAt3X.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-horizontalMediumAt2X.jpg',
'height': 2683,
'width': 4020,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-threeByTwoLargeAt2X.jpg',
'height': 2683,
'width': 4020,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-articleInline.jpg',
'height': 132,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-hpSmall.jpg',
'height': 114,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-blogSmallInline.jpg',
'height': 105,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mediumFlexible177.jpg',
'height': 123,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine3000.jpg',
'height': 1690,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/07/opinion/GivingGuide-image/GivingGuide-image-mobileMasterAt3x.jpg',
'height': 1254,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Holiday Giving Guide 2021',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Gifts', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Holidays and Special Occasions',
'rank': 3,
'major': 'N'}],
'pub_date': '2021-12-15T10:00:03+0000',
'document_type': 'multimedia',
'news_desk': 'Opinion',
'section_name': 'Opinion',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/3e51fc05-e7f7-51c1-9343-808ee4bb2355',
'word_count': 0,
'uri': 'nyt://interactive/3e51fc05-e7f7-51c1-9343-808ee4bb2355'},
{'abstract': 'What extraordinary talent would you like to have? Would you want to be famous?',
'web_url': 'https://learning.blogs.nytimes.com/2015/06/09/would-you-want-to-be-a-child-prodigy/',
'snippet': 'What extraordinary talent would you like to have? Would you want to be famous?',
'lead_paragraph': 'Publish a novel at age 12, perform surgery at age 7, be a jazz piano sensation at age 10. ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-articleLarge.jpg',
'height': 362,
'width': 600,
'legacy': {'xlarge': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 362},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-blog480.jpg',
'height': 289,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-blog427.jpg',
'height': 257,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-tmagArticle.jpg',
'height': 357,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-jumbo.jpg',
'height': 617,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-blog225.jpg',
'height': 136,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-master675.jpg',
'height': 407,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-master180.jpg',
'height': 108,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-popup.jpg',
'height': 392,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-blog533.jpg',
'height': 321,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-tmagSF.jpg',
'height': 218,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-slide.jpg',
'height': 362,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-superJumbo.jpg',
'height': 1234,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-master1050.jpg',
'height': 633,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-master495.jpg',
'height': 298,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-master315.jpg',
'height': 190,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-articleInline.jpg',
'height': 115,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-hpSmall.jpg',
'height': 98,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-blogSmallInline.jpg',
'height': 91,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-mediumFlexible177.jpg',
'height': 107,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/18/opinion/RFDprodigy-LN/RFDprodigy-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Would You Want to Be a Child Prodigy?',
'kicker': 'The Learning Network',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2015-06-09T09:00:06+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Education',
'byline': {'original': 'By Michael Gonchar',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Gonchar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/96c21d98-6baf-56f2-a447-9d0e33a57ed9',
'word_count': 439,
'uri': 'nyt://article/96c21d98-6baf-56f2-a447-9d0e33a57ed9'},
{'abstract': 'In a lab, Ms. Sachs tests textiles, paper and plastics for manufacturers who seek the Good Housekeeping magazine seal of approval.',
'web_url': 'https://www.nytimes.com/2015/11/15/jobs/lexie-sachs-a-sentry-for-the-good-housekeeping-seal.html',
'snippet': 'In a lab, Ms. Sachs tests textiles, paper and plastics for manufacturers who seek the Good Housekeeping magazine seal of approval.',
'lead_paragraph': 'Lexie Sachs, 28, senior product analyst at the Good Housekeeping Institute in New York',
'print_section': 'BU',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-watch268-v3.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-facebookJumbo-v4.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoFifteenBySeven2610-v3.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-verticalTwoByThree735-v3.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-articleLarge-v3.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-articleLarge-v3.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-blog480-v3.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-blog427-v3.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-tmagArticle-v3.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-jumbo-v3.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-blog225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-master675-v3.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-master180-v3.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-master768-v3.jpg',
'height': 513,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-popup-v3.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-blog533-v3.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-tmagSF-v3.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-slide-v3.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-superJumbo-v3.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-master1050-v3.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-master495-v3.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-master315-v3.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-square320-v4.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-filmstrip-v4.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-square640-v4.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-moth-v4.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-mediumSquare149-v4.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-articleInline-v3.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-hpSmall-v3.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-blogSmallInline-v3.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-mediumFlexible177-v3.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-sfSpan-v3.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-largeHorizontal375-v3.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-hpLarge-v3.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-largeWidescreen573-v3.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-largeWidescreen1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoHpMedium-v3.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine600-v3.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine540-v3.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine495-v3.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine390-v3.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine480-v3.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine310-v3.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine225-v3.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine96-v3.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine768-v3.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine150-v3.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-thumbStandard-v4.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-thumbStandard-v4.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-thumbLarge-v4.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-smallSquare252-v4.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-blogSmallThumb-v4.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/15/business/15-VOCATION/15-VOCATION-smallSquare168-v4.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Lexie Sachs: A Sentry for the Good Housekeeping Seal',
'kicker': 'Vocations',
'content_kicker': None,
'print_headline': 'Sentry for a Seal of Approval',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Sachs, Alexandra J (1987- )',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Careers and Professions',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Good Housekeeping',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Product Tests', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Labor and Jobs', 'rank': 6, 'major': 'N'}],
'pub_date': '2015-11-14T16:27:06+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Job Market',
'byline': {'original': 'Interview by Patricia R. Olsen',
'person': [{'firstname': None,
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Question',
'_id': 'nyt://article/62996c3c-ce6a-5a21-bbb5-672d1c428cb4',
'word_count': 360,
'uri': 'nyt://article/62996c3c-ce6a-5a21-bbb5-672d1c428cb4'},
{'abstract': 'Shakespeare & Company puts on the repertory staple “The Servant of Two Masters,” adapted and directed by Jenna Ware, in an Elizabethan-style tented playhouse.',
'web_url': 'https://www.nytimes.com/2014/07/25/theater/goldonis-the-servant-of-two-masters-in-the-country.html',
'snippet': 'Shakespeare & Company puts on the repertory staple “The Servant of Two Masters,” adapted and directed by Jenna Ware, in an Elizabethan-style tented playhouse.',
'lead_paragraph': 'LENOX, Mass. — Good help is so hard to find. Particularly in the alleyways and waterways of 18th-century Venice.',
'print_section': 'C',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/07/25/theater/25servant/25servant-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2014/07/25/theater/25servant/25servant-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-jumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-popup.jpg',
'height': 432,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-master495.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/07/25/theater/25servant/25servant-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/25/theater/25servant/25servant-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Ringing the Cowbell for Two Suppers',
'kicker': 'Theater Review',
'content_kicker': None,
'print_headline': 'Ringing the Cowbell for Two Suppers',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Goldoni, Carlo', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Ware, Jenna', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Shakespeare & Co (Mass Theater Co)',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Lenox (Mass)', 'rank': 6, 'major': 'N'},
{'name': 'creative_works',
'value': 'The Servant of Two Masters (Play)',
'rank': 7,
'major': 'N'}],
'pub_date': '2014-07-24T21:15:50+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Theater',
'byline': {'original': 'By Alexis Soloski',
'person': [{'firstname': 'Alexis',
'middlename': None,
'lastname': 'Soloski',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/8178181b-dabd-5739-95cf-29afdfb26999',
'word_count': 369,
'uri': 'nyt://article/8178181b-dabd-5739-95cf-29afdfb26999'},
{'abstract': 'A winning strategy will not necessarily involve overtaking iPhones or Samsung phones, but wringing more money from its most loyal shoppers.',
'web_url': 'https://www.nytimes.com/2014/06/19/upshot/how-amazon-measures-phone-success.html',
'snippet': 'A winning strategy will not necessarily involve overtaking iPhones or Samsung phones, but wringing more money from its most loyal shoppers.',
'lead_paragraph': 'Amazon’s new Fire phone might be less about the phone and more about what its computing power can do in a few years, when it is built into futuristic devices like Internet-connected contact lenses, as I wrote today on the Upshot.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'How Amazon Measures Phone Success',
'kicker': 'Tech Demographics',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Smartphones', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'}],
'pub_date': '2014-06-18T23:03:53+0000',
'document_type': 'article',
'news_desk': 'Upshot',
'section_name': 'The Upshot',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e0bbb3f8-a14d-5fef-aa05-875eda34caad',
'word_count': 430,
'uri': 'nyt://article/e0bbb3f8-a14d-5fef-aa05-875eda34caad'},
{'abstract': 'Surprising industry analysts, “The Boss Baby” pulled in $49 million this weekend, just ahead of Disney’s “Beauty and the Beast.”',
'web_url': 'https://www.nytimes.com/2017/04/02/movies/the-boss-baby-bests-beast-barely-as-box-office-no-1.html',
'snippet': 'Surprising industry analysts, “The Boss Baby” pulled in $49 million this weekend, just ahead of Disney’s “Beauty and the Beast.”',
'lead_paragraph': 'LOS ANGELES — Show business rule of thumb: Never underestimate a tough-talking tot.',
'print_section': 'C',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-articleLarge.jpg',
'height': 249,
'width': 600,
'legacy': {'xlarge': 'images/2017/04/03/arts/03box-1/03box-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 249},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-blog480.jpg',
'height': 199,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-blog427.jpg',
'height': 177,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-tmagArticle.jpg',
'height': 245,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-jumbo.jpg',
'height': 424,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-blog225.jpg',
'height': 93,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-master675.jpg',
'height': 280,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-master180.jpg',
'height': 75,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-master768.jpg',
'height': 318,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-popup.jpg',
'height': 269,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-blog533.jpg',
'height': 221,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-tmagSF.jpg',
'height': 150,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-slide.jpg',
'height': 249,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-superJumbo.jpg',
'height': 849,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-master1050.jpg',
'height': 435,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-master495.jpg',
'height': 205,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-master315.jpg',
'height': 131,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/04/03/arts/03box-1/03box-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-articleInline.jpg',
'height': 79,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-hpSmall.jpg',
'height': 68,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-blogSmallInline.jpg',
'height': 63,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-mediumFlexible177.jpg',
'height': 73,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-largeHorizontalJumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/04/03/arts/03box-1/03box-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/03/arts/03box-1/03box-1-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘The Boss Baby’ Bests ‘Beast,’ Barely, as Box Office No. 1',
'kicker': None,
'content_kicker': None,
'print_headline': '‘Boss Baby’ Bests ‘Beast’ for Top Spot',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Animated Films', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'DreamWorks Animation SKG Inc',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Walt Disney Company',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Twentieth Century Fox',
'rank': 5,
'major': 'N'},
{'name': 'persons',
'value': 'Johansson, Scarlett',
'rank': 6,
'major': 'N'},
{'name': 'creative_works',
'value': 'Beauty and the Beast (Movie)',
'rank': 7,
'major': 'N'},
{'name': 'creative_works',
'value': 'Ghost in the Shell (Movie)',
'rank': 8,
'major': 'N'},
{'name': 'creative_works',
'value': 'The Boss Baby (Movie)',
'rank': 9,
'major': 'N'}],
'pub_date': '2017-04-02T16:38:26+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Movies',
'byline': {'original': 'By Brooks Barnes',
'person': [{'firstname': 'Brooks',
'middlename': None,
'lastname': 'Barnes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3336f2ec-de60-57e4-b0bb-9a11ae2290de',
'word_count': 336,
'uri': 'nyt://article/3336f2ec-de60-57e4-b0bb-9a11ae2290de'},
{'abstract': 'According to the Organic Trade Association, the industry grew to $31.5 billion in sales in the United States in 2012 from $8.4 billion a decade earlier.',
'web_url': 'https://www.nytimes.com/2014/04/09/business/energy-environment/target-to-stock-more-environmentally-friendly-products.html',
'snippet': 'According to the Organic Trade Association, the industry grew to $31.5 billion in sales in the United States in 2012 from $8.4 billion a decade earlier.',
'lead_paragraph': 'When Eric Ryan helped start Method Products in 2001, the market for environmentally friendly soaps and cleaning products, he recalled, was a “niche of a niche of a niche.”',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Target to Stock More Environmentally Friendly Products',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sustainable Living',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Target Corporation',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Organic Trade Assn',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Organic Foods and Products',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-04-08T22:00:55+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Energy & Environment ',
'byline': {'original': 'By Elizabeth A. Harris',
'person': [{'firstname': 'Elizabeth',
'middlename': 'A.',
'lastname': 'Harris',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/335521f7-5054-5f2d-bfb9-f99b9b79ff50',
'word_count': 385,
'uri': 'nyt://article/335521f7-5054-5f2d-bfb9-f99b9b79ff50'}],
[{'abstract': 'On NBC’s Facebook page, the naming of Erica Hill to Jenna Wolfe’s co-host spot on “Weekend Today” raised hackles reminiscent of the anger over Ann Curry’s departure from the “Today” show.',
'web_url': 'https://mediadecoder.blogs.nytimes.com/2012/11/04/nbc-peppered-by-online-critics-in-shuffle-of-hosts/',
'snippet': 'On NBC’s Facebook page, the naming of Erica Hill to Jenna Wolfe’s co-host spot on “Weekend Today” raised hackles reminiscent of the anger over Ann Curry’s departure from the “Today” show.',
'lead_paragraph': 'Same outrage, same channel, different co-host.',
'print_section': 'B',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'NBC Peppered by Online Critics in Shuffle of Hosts',
'kicker': 'Media Decoder',
'content_kicker': None,
'print_headline': 'NBC Peppered by Critics In Shuffle of Weekend Hosts',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Television',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'National Broadcasting Co',
'rank': 2,
'major': 'N'}],
'pub_date': '2012-11-05T01:41:14+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Brian Stelter',
'person': [{'firstname': 'Brian',
'middlename': None,
'lastname': 'Stelter',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0132c11b-2996-59f4-aa76-bfb416761321',
'word_count': 362,
'uri': 'nyt://article/0132c11b-2996-59f4-aa76-bfb416761321'},
{'abstract': 'President Rodrigo Duterte demanded that tons of garbage mistakenly sent to his country be returned by May 15, threatening otherwise to dump it on Canada’s shore.',
'web_url': 'https://www.nytimes.com/2019/05/08/world/asia/duterte-philippines-canada-trash.html',
'snippet': 'President Rodrigo Duterte demanded that tons of garbage mistakenly sent to his country be returned by May 15, threatening otherwise to dump it on Canada’s shore.',
'lead_paragraph': 'MANILA — President Rodrigo Duterte has given Canada a May 15 deadline to take back tons of trash mistakenly sent to the Philippines several years ago, saying he will ship the garbage back if the Canadians do not comply.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/08/world/08trash1/08trash1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/merlin_154133394_165fc8e6-7221-4e04-aac5-55b88c41e4be-horizontalMediumAt2X.jpg',
'height': 3398,
'width': 5097,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/08/world/08trash1/08trash1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-threeByTwoLargeAt2X.jpg',
'height': 2757,
'width': 4136,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-articleInline.jpg',
'height': 119,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-hpSmall.jpg',
'height': 102,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-blogSmallInline.jpg',
'height': 95,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-mediumFlexible177.jpg',
'height': 111,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/08/world/08trash1/08trash1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Philippines Sets Deadline for Canada to Take Back Trash',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Duterte, Rodrigo', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'Philippines', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Canada', 'rank': 4, 'major': 'N'}],
'pub_date': '2019-05-08T11:35:04+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Jason Gutierrez',
'person': [{'firstname': 'Jason',
'middlename': None,
'lastname': 'Gutierrez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1f4df84b-c3d1-57be-8fee-df53736e44aa',
'word_count': 410,
'uri': 'nyt://article/1f4df84b-c3d1-57be-8fee-df53736e44aa'},
{'abstract': 'A dash from a firehouse to help a 14-month-old who was not breathing. The boy’s long-term prognosis was not clear.',
'web_url': 'https://cityroom.blogs.nytimes.com/2010/05/29/firefighters-help-revive-staten-island-boy-who-fell-into-pool/',
'snippet': 'A dash from a firehouse to help a 14-month-old who was not breathing. The boy’s long-term prognosis was not clear.',
'lead_paragraph': 'A 14-month-old boy was hospitalized on Saturday after falling into a backyard swimming pool at his family’s home on Staten Island, officials said.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Firefighters Help Revive Boy Who Fell Into Pool',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-05-29T22:00:52+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Al Baker',
'person': [{'firstname': 'Al',
'middlename': None,
'lastname': 'Baker',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/fa7b7151-890d-5fc3-8744-f7c8b6f04706',
'word_count': 399,
'uri': 'nyt://article/fa7b7151-890d-5fc3-8744-f7c8b6f04706'},
{'abstract': 'In “Speed-Dating,” a mash-up of men-behaving-badly sitcoms, three friends try to save a nightclub while refreshing their hookup pool.',
'web_url': 'https://www.nytimes.com/2010/10/01/movies/01speed.html',
'snippet': 'In “Speed-Dating,” a mash-up of men-behaving-badly sitcoms, three friends try to save a nightclub while refreshing their hookup pool.',
'lead_paragraph': 'A tired mash-up of every men-behaving-badly sitcom ever to grace a third-tier television network, “Speed-Dating” tries to coax laughs from characters so dated even Eddie Murphy would balk.',
'print_section': 'C',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Three Men Behaving (Really) Badly',
'kicker': "Movie Review | 'Speed-Dating'",
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'}],
'pub_date': '2010-10-01T00:31:49+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Jeannette Catsoulis',
'person': [{'firstname': 'Jeannette',
'middlename': None,
'lastname': 'Catsoulis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/6b771853-c483-52b5-b5bf-460f0fe64ff5',
'word_count': 369,
'uri': 'nyt://article/6b771853-c483-52b5-b5bf-460f0fe64ff5'},
{'abstract': 'Manufacturers need to admit that their wipes are not actually “flushable.”',
'web_url': 'https://takingnote.blogs.nytimes.com/2015/03/16/dont-flush-that-wipe/',
'snippet': 'Manufacturers need to admit that their wipes are not actually “flushable.”',
'lead_paragraph': 'This is not a particularly savory topic, but the brave people who run modern sewer systems around the world face a growing menace: the “flushable” wet wipe.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-watch308.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-watch268.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-superJumbo.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/03/16/opinion/16randolphWEB/16randolphWEB-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Don’t Flush That Wipe!',
'kicker': 'Taking Note',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Infrastructure (Public Works)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'de Blasio, Bill', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Consumer Reports',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Department of Environmental Protection (NYC)',
'rank': 6,
'major': 'N'},
{'name': 'glocations',
'value': 'London (England)',
'rank': 7,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 8, 'major': 'N'}],
'pub_date': '2015-03-16T21:03:15+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Eleanor Randolph',
'person': [{'firstname': 'Eleanor',
'middlename': None,
'lastname': 'Randolph',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1cece6c3-06c0-5957-8c27-68db669defd4',
'word_count': 372,
'uri': 'nyt://article/1cece6c3-06c0-5957-8c27-68db669defd4'},
{'abstract': 'An English designer opens her first Manhattan store; a French knitwear brand does, too.',
'web_url': 'https://www.nytimes.com/2011/11/03/fashion/store-openings-in-new-york.html',
'snippet': 'An English designer opens her first Manhattan store; a French knitwear brand does, too.',
'lead_paragraph': 'OPENINGS',
'print_section': 'E',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Scouting Report',
'kicker': None,
'content_kicker': None,
'print_headline': 'Scouting Report',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 2,
'major': 'N'}],
'pub_date': '2011-11-02T18:15:44+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Alexis Mainland',
'person': [{'firstname': 'Alexis',
'middlename': None,
'lastname': 'Mainland',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d5f60c64-2639-564f-ac7a-1af570b30570',
'word_count': 379,
'uri': 'nyt://article/d5f60c64-2639-564f-ac7a-1af570b30570'},
{'abstract': 'The 2,000 residents of an Arizona town are eager for the arrival of Britain’s Prince Harry, who will spend two months there for training — and perhaps a shrimp-eating contest.',
'web_url': 'https://www.nytimes.com/2011/10/26/us/prince-harry-headed-to-gila-bend-ariz-for-military-drills.html',
'snippet': 'The 2,000 residents of an Arizona town are eager for the arrival of Britain’s Prince Harry, who will spend two months there for training — and perhaps a shrimp-eating contest.',
'lead_paragraph': 'GILA BEND, Ariz. — Among the books mentioning princes in the Gila Bend Branch Library is “The Prince and the Potty,” about a young prince learning to outgrow his diaper, and “The Frog Prince Continued,” about a frog who was turned into a prince but kept hopping on furniture and flicking his tongue at flies.',
'print_section': 'A',
'print_page': '15',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/10/26/us/PRINCE/PRINCE-jumbo.jpg',
'height': 1024,
'width': 703,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/10/26/us/PRINCE/PRINCE-popup.jpg',
'height': 500,
'width': 343,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/10/26/us/PRINCE/PRINCE-articleInline.jpg',
'height': 277,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/10/26/us/PRINCE/PRINCE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/10/26/us/PRINCE/PRINCE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Military Drills Paired With Shrimp? For a Prince, It’s Possible',
'kicker': None,
'content_kicker': None,
'print_headline': 'Military Drills Paired With Shrimp? For a Prince, It’s Possible',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Prince Henry of Wales',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Arizona', 'rank': 2, 'major': 'N'}],
'pub_date': '2011-10-25T23:35:16+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Marc Lacey',
'person': [{'firstname': 'Marc',
'middlename': None,
'lastname': 'Lacey',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a056f537-8b14-5f61-8455-de770ad07ff2',
'word_count': 399,
'uri': 'nyt://article/a056f537-8b14-5f61-8455-de770ad07ff2'},
{'abstract': 'There are more than 700 apps tagged for toddlers in Apple’s App store. Here are some of the best ones.',
'web_url': 'https://gadgetwise.blogs.nytimes.com/2011/06/29/five-great-ipad-apps-for-toddlers/',
'snippet': 'There are more than 700 apps tagged for toddlers in Apple’s App store. Here are some of the best ones.',
'lead_paragraph': 'While experts debate about whether or not tablets and smartphones are appropriate for young children, the fingerprints all over your iPad are an indicator that children — some as young as 12 months of age — have taken the issue into their own hands. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Five Great iPad Apps for Toddlers',
'kicker': 'Gadgetwise',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Youth',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'iPad', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Mobile Applications',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': 'iTunes', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-06-29T21:00:28+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'subsection_name': 'Personal Tech',
'byline': {'original': 'By Warren Buckleitner',
'person': [{'firstname': 'Warren',
'middlename': None,
'lastname': 'Buckleitner',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e5f6fe08-e555-5472-a879-9759203fb105',
'word_count': 389,
'uri': 'nyt://article/e5f6fe08-e555-5472-a879-9759203fb105'},
{'abstract': 'Every moment as a parent can feel filled with import — we have to say the right thing, make the right choice, set the right example.',
'web_url': 'https://parenting.blogs.nytimes.com/2010/01/27/perils-of-the-parenting-playground/',
'snippet': 'Every moment as a parent can feel filled with import — we have to say the right thing, make the right choice, set the right example.',
'lead_paragraph': 'Every moment as a parent can feel filled with import — we have to say the right thing, make the right choice, set the right example. We are, after all, our children’s guides and teachers. Any small moment could be the one that launches or inspires them; together those moments will set the direction of their lives.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Perils of the Parenting Playground',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-01-27T18:51:54+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/b950e77a-279b-55bf-9358-851bb8e3a8f6',
'word_count': 390,
'uri': 'nyt://article/b950e77a-279b-55bf-9358-851bb8e3a8f6'},
{'abstract': 'The police said a woman left her 6-month-old son alone in a playground. She was charged with reckless endangerment, endangering the welfare of a child and filing a false report.',
'web_url': 'https://www.nytimes.com/2014/03/25/nyregion/detectives-questioning-parents-of-baby-found-alone-in-harlem-park.html',
'snippet': 'The police said a woman left her 6-month-old son alone in a playground. She was charged with reckless endangerment, endangering the welfare of a child and filing a false report.',
'lead_paragraph': 'A woman was arrested and charged with abandoning her 6-month-old son in an Upper Manhattan playground Sunday night, the police said on Monday.',
'print_section': 'A',
'print_page': '22',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/03/25/nyregion/BABY/BABY-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/03/25/nyregion/BABY/BABY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-hpLarge-v2.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-largeWidescreen573-v2.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/03/25/nyregion/BABY/BABY-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/03/25/nyregion/BABY/BABY-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Mother Is Charged With Abandoning Infant',
'kicker': None,
'content_kicker': None,
'print_headline': 'Mother Is Charged With Abandoning Infant',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Police', 'rank': 3, 'major': 'N'},
{'name': 'glocations',
'value': 'Harlem (Manhattan, NY)',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Child Abuse and Neglect',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Child Abandonment', 'rank': 6, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 7, 'major': 'N'},
{'name': 'persons', 'value': 'Rowell, Kenyetta', 'rank': 8, 'major': 'N'},
{'name': 'persons', 'value': 'Fanbro, Kamar', 'rank': 9, 'major': 'N'}],
'pub_date': '2014-03-24T19:34:45+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By J. David Goodman',
'person': [{'firstname': 'J.',
'middlename': 'David',
'lastname': 'Goodman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/de4c876b-70c4-5593-83de-6fcc6a44b0a4',
'word_count': 356,
'uri': 'nyt://article/de4c876b-70c4-5593-83de-6fcc6a44b0a4'}],
[{'abstract': 'Every month Judith Goldberg writes the “Judy on Duty” advice column for the print version of Parents magazine.',
'web_url': 'https://parenting.blogs.nytimes.com/2011/03/24/are-leashes-for-children/',
'snippet': 'Every month Judith Goldberg writes the “Judy on Duty” advice column for the print version of Parents magazine.',
'lead_paragraph': 'Every month Judith Goldberg writes the “Judy on Duty” advice column for the print version of Parents magazine. At the end of each one, she offers up a few sentences of what she calls her “humble opinion,” and she has always assumed that most readers glance over those and then move on. Let’s just say the “IMHO” section is “normally not a huge generator of mail at our magazine,” she explained in an e-mail.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Are Leashes for Children?',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Baby Carriages, Strollers and Carriers',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-03-24T17:49:53+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/aa9e8439-9144-5c50-9f8f-77ef4b395c5d',
'word_count': 395,
'uri': 'nyt://article/aa9e8439-9144-5c50-9f8f-77ef4b395c5d'},
{'abstract': 'Would anyone really buy a headband with attached bangs to ensure that a bald baby is recognizable as a girl?',
'web_url': 'https://parenting.blogs.nytimes.com/2013/07/16/bothered-by-your-bald-baby-girl-enter-baby-bangs/',
'snippet': 'Would anyone really buy a headband with attached bangs to ensure that a bald baby is recognizable as a girl?',
'lead_paragraph': 'I have three sons, and they each had a healthy crop of hair at birth. So who am I to judge the thinking behind Baby Bangs, “the first and only Ready2Wear hairstyle hairbands ever made”? ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-jumbo.jpg',
'height': 569,
'width': 378,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-blog225.jpg',
'height': 339,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-master180.jpg',
'height': 271,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-popup.jpg',
'height': 500,
'width': 333,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-tmagSF.jpg',
'height': 545,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-slide.jpg',
'height': 500,
'width': 333,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-superJumbo.jpg',
'height': 569,
'width': 378,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-articleInline.jpg',
'height': 286,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-hpSmall.jpg',
'height': 245,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-blogSmallInline.jpg',
'height': 227,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-mediumFlexible177.jpg',
'height': 266,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/07/16/style/motherlode-baby-bangs/motherlode-baby-bangs-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Bothered by Your Bald Baby Girl? Enter ‘Baby Bangs’',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Hair', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'}],
'pub_date': '2013-07-16T21:15:50+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Hope Reeves',
'person': [{'firstname': 'Hope',
'middlename': None,
'lastname': 'Reeves',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a97b21bc-ab72-521c-b43d-36e592c8a369',
'word_count': 362,
'uri': 'nyt://article/a97b21bc-ab72-521c-b43d-36e592c8a369'},
{'abstract': 'Sadly, it is not true that the more stuff you buy, the easier parenthood will be.',
'web_url': 'https://parenting.blogs.nytimes.com/2012/05/03/why-first-time-parents-overspend-on-baby/',
'snippet': 'Sadly, it is not true that the more stuff you buy, the easier parenthood will be.',
'lead_paragraph': '“What’s the silliest thing you bought for your first baby?” ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Why First-Time Parents Overspend on Baby',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Baby Carriages, Strollers and Carriers',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 6,
'major': 'N'}],
'pub_date': '2012-05-03T05:14:29+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': "By Kj Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cbf6c0f0-5eab-532d-b904-89678347f0fd',
'word_count': 368,
'uri': 'nyt://article/cbf6c0f0-5eab-532d-b904-89678347f0fd'},
{'abstract': 'In his new book, Tom Vanderbilt says that our culture is so caught up in work and ambition that “we’re afraid of being just OK at things.”',
'web_url': 'https://www.nytimes.com/2020/12/29/books/review-beginners-lifelong-learning-tom-vanderbilt.html',
'snippet': 'In his new book, Tom Vanderbilt says that our culture is so caught up in work and ambition that “we’re afraid of being just OK at things.”',
'lead_paragraph': 'Not far into “Beginners,” Tom Vanderbilt’s tribute to the life-changing magic of learning new skills, he describes taking his young daughter snowboarding. At the time, Vanderbilt was nearing 50; he decided to approach the activity with an open mind, freed from all expectation, even if he was old enough to know what the risks were. “I had no goals other than avoiding the hospital,” he writes, after referring to the novelist Norman Rush’s comparison of being in love to going into an undiscovered room. “I just wanted to enter a new ‘room.’”',
'print_section': 'C',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-articleLarge.png',
'height': 877,
'width': 600,
'legacy': {'xlarge': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 877},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-popup.png',
'height': 500,
'width': 342,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-blog480.png',
'height': 702,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-blog533.png',
'height': 779,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-blog427.png',
'height': 624,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-tmagSF.png',
'height': 529,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-tmagArticle.png',
'height': 866,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-slide.png',
'height': 500,
'width': 342,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-jumbo.png',
'height': 1024,
'width': 701,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-superJumbo.png',
'height': 2048,
'width': 1401,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-blog225.png',
'height': 329,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-master1050.png',
'height': 1535,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-master675.png',
'height': 987,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-master495.png',
'height': 724,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-master180.png',
'height': 263,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-master315.png',
'height': 461,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-master768.png',
'height': 1123,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-smallSquare168.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-smallSquare252.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-square640.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumSquareAt3X.png',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-sfSpan.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-largeHorizontalJumbo.png',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-horizontalMediumAt2X.png',
'height': 2616,
'width': 3925,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-hpLarge.png',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-largeWidescreen573.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-largeWidescreen1050.png',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoLarge.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumThreeByTwo440.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumThreeByTwo252.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumThreeByTwo378.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-threeByTwoLargeAt2X.png',
'height': 2606,
'width': 3909,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-threeByTwoMediumAt2X.png',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-threeByTwoSmallAt2X.png',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-articleInline.png',
'height': 278,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-hpSmall.png',
'height': 238,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-blogSmallInline.png',
'height': 221,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mediumFlexible177.png',
'height': 259,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine1050.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine3000.png',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine768.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNine150.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoSixteenByNineJumbo1600.png',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoFifteenBySeven1305.png',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-videoFifteenBySeven2610.png',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-facebookJumbo.png',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-watch308.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-watch268.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-verticalTwoByThree735.png',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/30/books/30BOOKVANDERBILT1/30BOOKVANDERBILT1-mobileMasterAt3x.png',
'height': 2616,
'width': 1789,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'In ‘Beginners,’ a Writer Takes Up Chess and Surfing and Singing and Juggling and …',
'kicker': None,
'content_kicker': None,
'print_headline': 'At Middle Age, Time to Try Some New Tricks',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Vanderbilt, Tom (1968- )',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Personal Profile',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Adult Education', 'rank': 4, 'major': 'N'},
{'name': 'creative_works',
'value': 'Beginners: The Joy and Transformative Power of Lifelong Learning (Book)',
'rank': 5,
'major': 'N'}],
'pub_date': '2020-12-29T15:44:46+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Books',
'byline': {'original': 'By Jennifer Szalai',
'person': [{'firstname': 'Jennifer',
'middlename': None,
'lastname': 'Szalai',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/68c00704-0e08-5167-b892-fe9dea3d0020',
'word_count': 977,
'uri': 'nyt://article/68c00704-0e08-5167-b892-fe9dea3d0020'},
{'abstract': 'Amazon has transformed the way Americans buy products as different as books and diapers, but with drugs, it will need to work with powerful entrenched players. ',
'web_url': 'https://www.nytimes.com/2018/07/02/health/amazon-pillpack-drugs.html',
'snippet': 'Amazon has transformed the way Americans buy products as different as books and diapers, but with drugs, it will need to work with powerful entrenched players. ',
'lead_paragraph': 'When Amazon announced last week that it was buying the online pharmacy PillPack, it sent stocks of drugstore companies like Walgreens and Rite Aid tumbling, as investors worried that the retail behemoth would soon upend the pharmacy market. ',
'print_section': 'B',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-articleLarge.jpg',
'height': 432,
'width': 600,
'legacy': {'xlarge': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 432},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-popup.jpg',
'height': 468,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-blog480.jpg',
'height': 346,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-blog533.jpg',
'height': 384,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-blog427.jpg',
'height': 308,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-tmagSF.jpg',
'height': 261,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-tmagArticle.jpg',
'height': 427,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-slide.jpg',
'height': 432,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-jumbo.jpg',
'height': 738,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-superJumbo.jpg',
'height': 1476,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-blog225.jpg',
'height': 162,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-master1050.jpg',
'height': 757,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-master675.jpg',
'height': 486,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-master495.jpg',
'height': 357,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-master180.jpg',
'height': 130,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-master315.jpg',
'height': 227,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-master768.jpg',
'height': 553,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-horizontalMediumAt2X.jpg',
'height': 1895,
'width': 2842,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-threeByTwoLargeAt2X.jpg',
'height': 1866,
'width': 2800,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-articleInline.jpg',
'height': 137,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-hpSmall.jpg',
'height': 117,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-blogSmallInline.jpg',
'height': 109,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/merlin_140647377_9118b60b-2b05-4ee4-81df-5a5703d86095-mediumFlexible177.jpg',
'height': 128,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/03/business/03PILLPACK/03PILLPACK-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Why Amazon’s Push Into Prescription Drugs Isn’t a Guaranteed Success',
'kicker': None,
'content_kicker': None,
'print_headline': 'Question for Amazon: Will Pharmacy Industry See It as Partner or Rival?',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Drugs (Pharmaceuticals)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Drugstores', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Health Insurance and Managed Care',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Express Scripts Inc',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'AMERISOURCEBERGEN CORP',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'PillPack Inc',
'rank': 8,
'major': 'N'}],
'pub_date': '2018-07-02T14:54:23+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Katie Thomas and Claire Ballentine',
'person': [{'firstname': 'Katie',
'middlename': None,
'lastname': 'Thomas',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Claire',
'middlename': None,
'lastname': 'Ballentine',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2b4dc8e1-1302-5ac8-9075-6820bbf1dad5',
'word_count': 938,
'uri': 'nyt://article/2b4dc8e1-1302-5ac8-9075-6820bbf1dad5'},
{'abstract': 'The children, who had been living for weeks in filthy conditions on the Texas border, have been transferred to other shelters, including a tent facility in El Paso.',
'web_url': 'https://www.nytimes.com/2019/06/24/us/border-migrant-children-detention-soap.html',
'snippet': 'The children, who had been living for weeks in filthy conditions on the Texas border, have been transferred to other shelters, including a tent facility in El Paso.',
'lead_paragraph': 'Hundreds of migrant children have been transferred out of a filthy Border Patrol station in Texas where they had been detained for weeks without access to soap, clean clothes or adequate food, the authorities confirmed on Monday, suggesting that worsening conditions and overcrowding inside federal border facilities may have reached a breaking point.',
'print_section': 'A',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/24/us/24borderkids/24borderkids-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/merlin_156797106_4b349ebb-bd0f-4d73-9a0f-7b0a5daccd75-horizontalMediumAt2X.jpg',
'height': 1667,
'width': 2500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/24/us/24borderkids/24borderkids-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-threeByTwoLargeAt2X-v2.jpg',
'height': 1202,
'width': 1802,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-threeByTwoMediumAt2X-v2.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24borderkids/24borderkids-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Hundreds of Migrant Children Are Moved Out of an Overcrowded Border Station',
'kicker': None,
'content_kicker': None,
'print_headline': 'Hundreds of Children Are Moved Out of an Overcrowded Border Station',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Immigration Detention',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Border Patrol (US)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Illegal Immigration',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Clint (Tex)', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'El Paso (Tex)', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Texas', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 7,
'major': 'N'}],
'pub_date': '2019-06-24T21:49:14+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Caitlin Dickerson',
'person': [{'firstname': 'Caitlin',
'middlename': None,
'lastname': 'Dickerson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/dd8a841e-6528-517f-aec5-2edd3b78b7ae',
'word_count': 1000,
'uri': 'nyt://article/dd8a841e-6528-517f-aec5-2edd3b78b7ae'},
{'abstract': 'Federal regulators and some lawmakers are looking to crack down on untrained pets being passed off as legitimate service or emotional support animals.',
'web_url': 'https://www.nytimes.com/2018/05/01/travel/service-animals-planes.html',
'snippet': 'Federal regulators and some lawmakers are looking to crack down on untrained pets being passed off as legitimate service or emotional support animals.',
'lead_paragraph': 'Sharon L. Giovinazzo, president and chief executive of World Services for the Blind, was recently walking through an airport with her trained service dog Watson when a “pocket pooch” growled and then bit him, she said.',
'print_section': 'A',
'print_page': '13',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-articleLarge.jpg',
'height': 393,
'width': 600,
'legacy': {'xlarge': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 393},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-popup.jpg',
'height': 426,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-blog480.jpg',
'height': 314,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-blog533.jpg',
'height': 349,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-blog427.jpg',
'height': 280,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-tmagSF.jpg',
'height': 237,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-tmagArticle.jpg',
'height': 388,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-slide.jpg',
'height': 393,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-jumbo.jpg',
'height': 671,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-superJumbo.jpg',
'height': 1341,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-blog225.jpg',
'height': 147,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-master1050.jpg',
'height': 688,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-master675.jpg',
'height': 442,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-master495.jpg',
'height': 324,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-master180.jpg',
'height': 118,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-master315.jpg',
'height': 206,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-master768.jpg',
'height': 503,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-largeHorizontalJumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-horizontalMediumAt2X-v2.jpg',
'height': 2963,
'width': 4449,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-threeByTwoLargeAt2X-v2.jpg',
'height': 2963,
'width': 4449,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-threeByTwoMediumAt2X-v2.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-articleInline.jpg',
'height': 124,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-hpSmall.jpg',
'height': 107,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-blogSmallInline.jpg',
'height': 99,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/merlin_132518405_cdea896e-6b78-40cb-94a7-0aa8da4cfd58-mediumFlexible177.jpg',
'height': 116,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/20DELTADOGS1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/05/02/business/02xp-service-print/22DELTADOG-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Is That Dog (or Pig) on Your Flight Really a Service Animal?',
'kicker': None,
'content_kicker': None,
'print_headline': 'Furry, Soothing, but Not Always a Dog',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Service Dogs and Other Animals',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Disabilities', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Frauds and Swindling',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Dogs', 'rank': 5, 'major': 'N'}],
'pub_date': '2018-05-01T13:55:23+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'Travel',
'byline': {'original': 'By Christopher Mele',
'person': [{'firstname': 'Christopher',
'middlename': None,
'lastname': 'Mele',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3549a6f9-96b4-5221-9a92-87be923159ab',
'word_count': 993,
'uri': 'nyt://article/3549a6f9-96b4-5221-9a92-87be923159ab'},
{'abstract': 'A Briton who says Mayor Sadiq Khan is not doing enough to fight crime came up with the idea, in response to the “Baby Trump” balloon flown in July.',
'web_url': 'https://www.nytimes.com/2018/09/01/world/europe/uk-balloon-sadiq-khan.html',
'snippet': 'A Briton who says Mayor Sadiq Khan is not doing enough to fight crime came up with the idea, in response to the “Baby Trump” balloon flown in July.',
'lead_paragraph': 'LONDON — In the annals of British political protest, the giant balloon is the current weapon of choice.',
'print_section': 'A',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-articleLarge.jpg',
'height': 380,
'width': 600,
'legacy': {'xlarge': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 380},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-popup.jpg',
'height': 412,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-blog480.jpg',
'height': 304,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-blog533.jpg',
'height': 338,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-blog427.jpg',
'height': 270,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-tmagSF.jpg',
'height': 229,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-tmagArticle.jpg',
'height': 375,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-slide.jpg',
'height': 380,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-jumbo.jpg',
'height': 649,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-superJumbo.jpg',
'height': 1297,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-blog225.jpg',
'height': 143,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-master1050.jpg',
'height': 665,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-master675.jpg',
'height': 428,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-master495.jpg',
'height': 314,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-master180.jpg',
'height': 114,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-master315.jpg',
'height': 200,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-master768.jpg',
'height': 486,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/09/02/world/02balloon1/02balloon2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-horizontalMediumAt2X.jpg',
'height': 2217,
'width': 3325,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/09/02/world/02balloon1/02balloon2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-threeByTwoLargeAt2X.jpg',
'height': 2217,
'width': 3325,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-articleInline.jpg',
'height': 120,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-hpSmall.jpg',
'height': 103,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-blogSmallInline.jpg',
'height': 96,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/merlin_143121966_a3732980-08dc-4a57-be24-d226d3cd64ec-mediumFlexible177.jpg',
'height': 112,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/02/world/02balloon1/02balloon2-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Balloon of London Mayor in a Bikini Flies Near Parliament',
'kicker': None,
'content_kicker': None,
'print_headline': 'Taking to the Sky to Deride the Mayor',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'London (England)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Balloons', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Legislatures and Parliaments',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Murders, Attempted Murders and Homicides',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Palace of Westminster (London, England)',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Freedom of Speech and Expression',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'Khan, Sadiq', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Demonstrations, Protests and Riots',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Bruere, Yanny', 'rank': 9, 'major': 'N'}],
'pub_date': '2018-09-01T09:22:43+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Yonette Joseph',
'person': [{'firstname': 'Yonette',
'middlename': None,
'lastname': 'Joseph',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5dd35de1-f578-5a22-bea1-8a1bec39a3bb',
'word_count': 896,
'uri': 'nyt://article/5dd35de1-f578-5a22-bea1-8a1bec39a3bb'},
{'abstract': 'Alissa Quart’s “Squeezed” examines the problem of families at the upper edge of the middle class, struggling to survive financially in America.',
'web_url': 'https://www.nytimes.com/2018/07/09/books/review/alissa-quart-squeezed.html',
'snippet': 'Alissa Quart’s “Squeezed” examines the problem of families at the upper edge of the middle class, struggling to survive financially in America.',
'lead_paragraph': 'SQUEEZED Why Our Families Can’t Afford America By Alissa Quart 320 pp. Ecco/HarperCollins Publishers. $27.99.',
'print_section': 'BR',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-articleLarge.jpg',
'height': 846,
'width': 600,
'legacy': {'xlarge': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 846},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-popup.jpg',
'height': 500,
'width': 355,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-blog480.jpg',
'height': 677,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-blog533.jpg',
'height': 751,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-blog427.jpg',
'height': 602,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-tmagSF.jpg',
'height': 510,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-tmagArticle.jpg',
'height': 834,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-slide.jpg',
'height': 500,
'width': 355,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-jumbo.jpg',
'height': 1024,
'width': 727,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-superJumbo.jpg',
'height': 2048,
'width': 1453,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-blog225.jpg',
'height': 317,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-master1050.jpg',
'height': 1480,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-master675.jpg',
'height': 951,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-master495.jpg',
'height': 698,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-master180.jpg',
'height': 254,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-master315.jpg',
'height': 444,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/merlin_140665398_0ec850d1-1e95-4c84-ac4b-0a2a82b06a69-master768.jpg',
'height': 1083,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-horizontalMediumAt2X.jpg',
'height': 2074,
'width': 3108,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-threeByTwoLargeAt2X.jpg',
'height': 2074,
'width': 3108,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/15/books/review/15ReichCooke-COVER/15ReichCooke-COVER-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'In the Middle Class, and Barely Getting By',
'kicker': 'Nonfiction',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Quart, Alissa', 'rank': 2, 'major': 'N'},
{'name': 'creative_works',
'value': "Squeezed: What You Don't Know about Orange Juice (Book)",
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Income Inequality', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Labor and Jobs', 'rank': 5, 'major': 'N'}],
'pub_date': '2018-07-09T09:00:07+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Emily Cooke',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Cooke',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/6194c5cd-41a8-594d-81a3-b3ba3ccd50ba',
'word_count': 1005,
'uri': 'nyt://article/6194c5cd-41a8-594d-81a3-b3ba3ccd50ba'},
{'abstract': 'Except for that business about the government shutting down because of the deadlock over President Trump’s wall, it was a pretty normal weekend at a quarter-mile bridge separating Mexico from Texas.',
'web_url': 'https://www.nytimes.com/2018/12/23/us/border-shutdown-wall-trump.html',
'snippet': 'Except for that business about the government shutting down because of the deadlock over President Trump’s wall, it was a pretty normal weekend at a quarter-mile bridge separating Mexico from Texas.',
'lead_paragraph': 'HIDALGO, Tex. — A man crossing the bridge from Reynosa, Mexico, to Texas lugged a merry toddler-size Santa Claus piñata that he had bought for $10. Maritza Delgado monitored her small children hanging upside down on a tree next to the sidewalk as they waited to cross back to Texas. Rene Saenz crossing toward Mexico carried Target bags full of diapers purchased at Sam’s Club to deliver to his family in Mexico.',
'print_section': 'A',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/12/24/us/24border/24border-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-superJumbo.jpg',
'height': 1364,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/12/24/us/24border/24border-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-horizontalMediumAt2X.jpg',
'height': 1833,
'width': 2752,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/12/24/us/24border/24border-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-threeByTwoLargeAt2X.jpg',
'height': 1833,
'width': 2752,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/24/us/24border/24border-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Far From Washington, the Routine Symbiosis of the Border Plays Out in Texas and Mexico',
'kicker': None,
'content_kicker': None,
'print_headline': '‘There’s No Crisis Here’: Bridge Traffic Is Glue For Texas and Mexico',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Border Barriers', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Shutdowns (Institutional)',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Border Patrol (US)',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'Hidalgo County (Tex)',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Mexico', 'rank': 7, 'major': 'N'}],
'pub_date': '2018-12-23T23:52:29+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Mitchell Ferman',
'person': [{'firstname': 'Mitchell',
'middlename': None,
'lastname': 'Ferman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d8ab7ce1-d183-5cfe-9ce4-3d1b2be210f5',
'word_count': 985,
'uri': 'nyt://article/d8ab7ce1-d183-5cfe-9ce4-3d1b2be210f5'}],
[{'abstract': 'Companies are employing their own custom-made images on social media; one even encoded an entire news release.',
'web_url': 'https://www.nytimes.com/2016/03/07/business/media/picture-this-marketers-let-emojis-do-the-talking.html',
'snippet': 'Companies are employing their own custom-made images on social media; one even encoded an entire news release.',
'lead_paragraph': 'The condom brand Durex has used World AIDS Day as a marketing hook for years, but for the most recent edition it tried something different: a condom emoji.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/03/07/business/07ADCO/07ADCO-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-facebookJumbo.jpg',
'height': 506,
'width': 966,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-articleLarge.jpg',
'height': 646,
'width': 600,
'legacy': {'xlarge': 'images/2016/03/07/business/07ADCO/07ADCO-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 646},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-blog480.jpg',
'height': 516,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-blog427.jpg',
'height': 459,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-tmagArticle.jpg',
'height': 637,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-jumbo.jpg',
'height': 920,
'width': 855,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-blog225.jpg',
'height': 242,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-master675.jpg',
'height': 726,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-master180.jpg',
'height': 194,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-master768.jpg',
'height': 826,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-popup.jpg',
'height': 500,
'width': 465,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-blog533.jpg',
'height': 574,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-tmagSF.jpg',
'height': 390,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-slide.jpg',
'height': 500,
'width': 465,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-superJumbo.jpg',
'height': 920,
'width': 855,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-master495.jpg',
'height': 533,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-master315.jpg',
'height': 339,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-articleInline.jpg',
'height': 204,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-hpSmall.jpg',
'height': 175,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-blogSmallInline.jpg',
'height': 162,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-mediumFlexible177.jpg',
'height': 190,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-largeHorizontalJumbo.jpg',
'height': 642,
'width': 963,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/03/07/business/07ADCO/07ADCO-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/07/business/07ADCO/07ADCO-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Picture This: Marketers Let Emojis Do the Talking',
'kicker': 'Advertising',
'content_kicker': None,
'print_headline': 'Marketers Let Emojis Say It With Pictures',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Emojis and Emoticons',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Online Advertising',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Social Media', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Instant Messaging',
'rank': 5,
'major': 'N'}],
'pub_date': '2016-03-07T02:17:03+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Robert D. Hof',
'person': [{'firstname': 'Robert',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/07559a47-a595-5513-8369-c981cc49a993',
'word_count': 949,
'uri': 'nyt://article/07559a47-a595-5513-8369-c981cc49a993'},
{'abstract': 'Disconcerting forecasts showing aging populations and increasing burdens on social services are weighing on governments throughout the region.',
'web_url': 'https://www.nytimes.com/2015/04/09/business/international/sex-education-in-europe-turns-to-urging-more-births.html',
'snippet': 'Disconcerting forecasts showing aging populations and increasing burdens on social services are weighing on governments throughout the region.',
'lead_paragraph': 'COPENHAGEN — Twenty-five Danish 13- and 14-year-olds gathered in a circle to talk about sex. This was going to be awkward.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/04/01/business/02procreate-web1/02procreate-web1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Sex Education in Europe Turns to Urging More Births',
'kicker': None,
'content_kicker': None,
'print_headline': 'New Topic in Europe’s Sex-Ed Classrooms: Making More Babies',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Europe',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Population', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Sex Education', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Birth Rates', 'rank': 6, 'major': 'N'}],
'pub_date': '2015-04-08T17:13:02+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'International Business',
'byline': {'original': 'By Danny Hakim',
'person': [{'firstname': 'Danny',
'middlename': None,
'lastname': 'Hakim',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5980099b-1329-5bba-a7a2-d15143e278f3',
'word_count': 998,
'uri': 'nyt://article/5980099b-1329-5bba-a7a2-d15143e278f3'},
{'abstract': 'As the fraud trial of the Theranos founder draws to a close, could her new courtroom image affect the decision?',
'web_url': 'https://www.nytimes.com/2021/12/17/style/elizabeth-holmes-trial-makeover.html',
'snippet': 'As the fraud trial of the Theranos founder draws to a close, could her new courtroom image affect the decision?',
'lead_paragraph': 'Some day, the three-month-long Elizabeth Holmes fraud trial will become fodder not just for the pundits of the tech world, but for historians looking back on how we got to here. It will be a case study in the use of clothing to affect opinion (public and judicial) and, if not to make friends, at least to influence people. Or try to.',
'print_section': 'B',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-popup.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-slide.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-superJumbo.jpg',
'height': 2048,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-horizontalMediumAt2X.jpg',
'height': 3547,
'width': 5321,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-threeByTwoLargeAt2X.jpg',
'height': 3547,
'width': 5322,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/12/08/fashion/00HOLMES-STYLE-nov-22/00HOLMES-STYLE-nov-22-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'The Verdict on the Elizabeth Holmes Trial Makeover',
'kicker': 'Unbuttoned',
'content_kicker': None,
'print_headline': 'A Fade From Black, Meant to Sway Jurors',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Frauds and Swindling',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Polls and Public Opinion',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Theranos Inc',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Holmes, Elizabeth (1984- )',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'your-feed-fashion',
'rank': 6,
'major': 'N'}],
'pub_date': '2021-12-17T10:00:17+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Vanessa Friedman',
'person': [{'firstname': 'Vanessa',
'middlename': None,
'lastname': 'Friedman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/19c23fb7-0b19-5f2a-8750-84bb75227b83',
'word_count': 997,
'uri': 'nyt://article/19c23fb7-0b19-5f2a-8750-84bb75227b83'},
{'abstract': 'How should you pack for your trip? Do children like boutique hotels? And how can straws make for smoother travel?',
'web_url': 'https://www.nytimes.com/2012/06/17/travel/7-tips-for-an-easier-family-getaway.html',
'snippet': 'How should you pack for your trip? Do children like boutique hotels? And how can straws make for smoother travel?',
'lead_paragraph': 'WITH summer just around the bend, many families are planning getaways. But figuring out all the details — from which hotels are child-friendly to how many diapers to pack for that five-hour flight (more is better) — can be critical for a smooth trip. Here are some lessons I have learned over the years, both from other travelers and through my own experience. ',
'print_section': 'TR',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-blog480.jpg',
'height': 464,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-jumbo.jpg',
'height': 991,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-popup.jpg',
'height': 629,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-superJumbo.jpg',
'height': 1451,
'width': 1500,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-articleInline.jpg',
'height': 184,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-sfSpan.jpg',
'height': 260,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/06/17/travel/17PRAC/17PRAC-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/06/17/travel/17PRAC/17PRAC-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': '7 Tips for an Easier Family Getaway',
'kicker': 'Practical Traveler',
'content_kicker': None,
'print_headline': 'Tips for an Easier Family Getaway',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 2,
'major': 'N'}],
'pub_date': '2012-06-13T16:15:31+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Michelle Higgins',
'person': [{'firstname': 'Michelle',
'middlename': None,
'lastname': 'Higgins',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/264e4d99-d3d0-5462-991e-016c597f428b',
'word_count': 1089,
'uri': 'nyt://article/264e4d99-d3d0-5462-991e-016c597f428b'},
{'abstract': 'We live in a time of more questions than answers. Beware anyone who thinks otherwise, especially presidents.',
'web_url': 'https://www.nytimes.com/2020/04/14/opinion/coronavirus-bolsonaro-brazil.html',
'snippet': 'We live in a time of more questions than answers. Beware anyone who thinks otherwise, especially presidents.',
'lead_paragraph': 'SÃO PAULO, Brazil — My first symptoms started on a Monday morning, March 23. I was just getting over a random disease that my daughter had brought home from nursery school — we’re still not sure what — when I had a sudden fever. My husband was the culprit, we decided; my daughter and I had already been isolated at home sick with something else for 10 days. He, on the other hand, was still attending a few work meetings and leaving our house to buy groceries.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-articleLarge.jpg',
'height': 375,
'width': 600,
'legacy': {'xlarge': 'images/2020/04/14/opinion/14Barbara/14Barbara-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 375},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-popup.jpg',
'height': 406,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-blog480.jpg',
'height': 300,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-blog533.jpg',
'height': 333,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-blog427.jpg',
'height': 267,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-tmagSF.jpg',
'height': 226,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-tmagArticle.jpg',
'height': 370,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-slide.jpg',
'height': 375,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-jumbo.jpg',
'height': 640,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-superJumbo.jpg',
'height': 1280,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-blog225.jpg',
'height': 141,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-master1050.jpg',
'height': 656,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-master675.jpg',
'height': 422,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-master495.jpg',
'height': 309,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-master180.jpg',
'height': 112,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-master315.jpg',
'height': 197,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-master768.jpg',
'height': 480,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/04/14/opinion/14Barbara/14Barbara-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-horizontalMediumAt2X.jpg',
'height': 2214,
'width': 3322,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/04/14/opinion/14Barbara/14Barbara-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-threeByTwoLargeAt2X.jpg',
'height': 2214,
'width': 3322,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-articleInline.jpg',
'height': 119,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-hpSmall.jpg',
'height': 102,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-blogSmallInline.jpg',
'height': 94,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mediumFlexible177.jpg',
'height': 111,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/04/14/opinion/14Barbara/14Barbara-mobileMasterAt3x.jpg',
'height': 1125,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘We Will All Die One Day,’ My President Said',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Tests (Medical)', 'rank': 2, 'major': 'N'},
{'name': 'persons',
'value': 'Bolsonaro, Jair (1955- )',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Brazil', 'rank': 4, 'major': 'N'},
{'name': 'glocations',
'value': 'Sao Paulo (Brazil)',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 6,
'major': 'N'}],
'pub_date': '2020-04-14T19:00:07+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Vanessa Barbara',
'person': [{'firstname': 'Vanessa',
'middlename': None,
'lastname': 'Barbara',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/1e27401c-1e1e-5ab6-bab8-a99e3b5fa116',
'word_count': 1017,
'uri': 'nyt://article/1e27401c-1e1e-5ab6-bab8-a99e3b5fa116'},
{'abstract': 'Consumers have been splurging on indulgences while paring many humdrum household expenses, according to industry data for the last year.',
'web_url': 'https://www.nytimes.com/2011/09/24/business/consumers-cut-back-on-staples-but-splurge-on-indulgences.html',
'snippet': 'Consumers have been splurging on indulgences while paring many humdrum household expenses, according to industry data for the last year.',
'lead_paragraph': 'With a flat job market and an economy that will not improve, Americans are once again buckling down and cutting back. ',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/24/business/Willpower/Willpower-articleLarge-v2.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2011/09/24/business/Willpower/Willpower-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/24/business/Willpower/Willpower-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/24/business/Willpower/Willpower-jumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/24/business/Willpower/Willpower-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/24/business/Willpower/Willpower-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/24/business/Willpower/Willpower-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/24/business/Willpower/Willpower-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/09/24/business/Willpower/Willpower-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'In Time of Scrimping, Fun Stuff Is Still Selling',
'kicker': None,
'content_kicker': None,
'print_headline': 'In Time of Scrimping, Fun Stuff Is Still Selling',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Consumer Behavior', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-09-24T01:15:55+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Stephanie Clifford and Andrew Martin',
'person': [{'firstname': 'Stephanie',
'middlename': None,
'lastname': 'Clifford',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Andrew',
'middlename': None,
'lastname': 'Martin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3a45cfdb-0a2a-5ddc-abf2-79d1c36934d3',
'word_count': 989,
'uri': 'nyt://article/3a45cfdb-0a2a-5ddc-abf2-79d1c36934d3'},
{'abstract': 'With big ambitions in India, the retail giant has recruited hundreds of small businesses to get packages to the most remote customers — including those 11,562 feet up in the Himalayas.',
'web_url': 'https://www.nytimes.com/2018/07/02/technology/delivering-amazon-india.html',
'snippet': 'With big ambitions in India, the retail giant has recruited hundreds of small businesses to get packages to the most remote customers — including those 11,562 feet up in the Himalayas.',
'lead_paragraph': 'LEH, India — Perched high in the Himalayas, near India’s border with China, the tiny town of Leh sometimes seems as if it has been left behind by modern technology. Internet and cellphone service is spotty, the two roads to the outside world are snowed in every winter, and Buddhist monasteries compete with military outposts for prime mountaintop locations.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-articleLarge-v2.jpg',
'height': 369,
'width': 600,
'legacy': {'xlarge': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 369},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-popup-v2.jpg',
'height': 400,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-blog480-v2.jpg',
'height': 296,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-blog533-v2.jpg',
'height': 328,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-blog427-v2.jpg',
'height': 263,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-tmagSF-v2.jpg',
'height': 223,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-tmagArticle-v2.jpg',
'height': 364,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-slide-v2.jpg',
'height': 369,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-jumbo-v2.jpg',
'height': 630,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-superJumbo-v2.jpg',
'height': 1261,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-blog225-v2.jpg',
'height': 139,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-master1050-v2.jpg',
'height': 646,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-master675-v2.jpg',
'height': 416,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-master495-v2.jpg',
'height': 305,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-master180-v2.jpg',
'height': 111,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-master315-v2.jpg',
'height': 194,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-master768-v2.jpg',
'height': 473,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-sfSpan.jpg',
'height': 194,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-largeHorizontal375.jpg',
'height': 184,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-largeHorizontalJumbo.jpg',
'height': 502,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-horizontalMediumAt2X.jpg',
'height': 3280,
'width': 6689,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-threeByTwoLargeAt2X.jpg',
'height': 2865,
'width': 4296,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-articleInline-v2.jpg',
'height': 117,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-hpSmall-v2.jpg',
'height': 100,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-blogSmallInline-v2.jpg',
'height': 93,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-mediumFlexible177-v2.jpg',
'height': 109,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/28/business/00AMAZONINDIA-promo/00AMAZONINDIA-promo-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Delivering Amazon Packages to the Top of the World',
'kicker': None,
'content_kicker': None,
'print_headline': 'Doorstep Service On Earth’s Roof',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'E-Commerce',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Delivery Services', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Leh (India)', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Incredible Himalaya',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Himalayas', 'rank': 6, 'major': 'N'},
{'name': 'glocations', 'value': 'India', 'rank': 7, 'major': 'N'}],
'pub_date': '2018-07-02T09:00:18+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Vindu Goel and Atul Loke',
'person': [{'firstname': 'Vindu',
'middlename': None,
'lastname': 'Goel',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Atul',
'middlename': None,
'lastname': 'Loke',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/69cff197-e80b-501e-a7a1-27570fb58f78',
'word_count': 927,
'uri': 'nyt://article/69cff197-e80b-501e-a7a1-27570fb58f78'},
{'abstract': 'Barbara Sheehan testified on Monday that she shot her husband in self-defense, and described nearly two decades of physical and emotional abuse at his hands.',
'web_url': 'https://www.nytimes.com/2011/09/20/nyregion/at-murder-trial-barbara-sheehan-testifies-she-killed-her-husband-in-self-defense.html',
'snippet': 'Barbara Sheehan testified on Monday that she shot her husband in self-defense, and described nearly two decades of physical and emotional abuse at his hands.',
'lead_paragraph': 'A Queens secretary accused of killing her husband testified on Monday that she shot him in self-defense when he pointed a loaded pistol at her head after she had refused to accompany him on a Florida vacation.',
'print_section': 'A',
'print_page': '29',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/20/nyregion/sheehan/sheehan-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/20/nyregion/sheehan/sheehan-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/20/nyregion/sheehan/sheehan-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/20/nyregion/sheehan/sheehan-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/20/nyregion/sheehan/sheehan-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/09/20/nyregion/sheehan/sheehan-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/09/20/nyregion/sheehan/sheehan-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Queens Woman Testifies She Killed Her Husband in Self-Defense',
'kicker': None,
'content_kicker': None,
'print_headline': '‘I Didn’t Want Him to Hurt Me or My Kids Anymore,’ Wife Testifies at Murder Trial',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Queens (NYC)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Sheehan, Barbara', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Domestic Violence', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Self-Defense', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Murders and Attempted Murders',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'Sheehan, Raymond', 'rank': 6, 'major': 'N'}],
'pub_date': '2011-09-20T02:35:27+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Dan Bilefsky',
'person': [{'firstname': 'Dan',
'middlename': None,
'lastname': 'Bilefsky',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/02a3e2db-782a-53f4-908b-4d4ada4e31c3',
'word_count': 956,
'uri': 'nyt://article/02a3e2db-782a-53f4-908b-4d4ada4e31c3'},
{'abstract': 'If you’re the kind of thoroughly engaged new dad who uses “source” as a food verb and has begun to question the relevance of Foucault, the folks at Kindling have a quarterly publication for you.',
'web_url': 'https://cityroom.blogs.nytimes.com/2013/02/10/eschewing-the-stress-of-fatherhood-in-favor-of-the-fun/',
'snippet': 'If you’re the kind of thoroughly engaged new dad who uses “source” as a food verb and has begun to question the relevance of Foucault, the folks at Kindling have a quarterly publication for you.',
'lead_paragraph': 'David Michael Perez sat on his fashionably low couch in Greenpoint, Brooklyn, rocking his infant son in his lap, and crying “upsie-daisy.” Beside him, August Heffner, said “so cute” and kissed his own son on the forehead.',
'print_section': 'A',
'print_page': '17',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-articleLarge.jpg',
'height': 836,
'width': 600,
'legacy': {'xlarge': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 836},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-blog480.jpg',
'height': 669,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-blog427.jpg',
'height': 595,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-tmagArticle.jpg',
'height': 825,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-jumbo.jpg',
'height': 1024,
'width': 736,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-popup.jpg',
'height': 500,
'width': 359,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-blog533.jpg',
'height': 742,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-tmagSF.jpg',
'height': 504,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-slide.jpg',
'height': 500,
'width': 359,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-superJumbo.jpg',
'height': 2048,
'width': 1471,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-articleInline.jpg',
'height': 265,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-hpSmall.jpg',
'height': 227,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-blogSmallInline.jpg',
'height': 210,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/nyregion/11cityroom-2/11cityroom-2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A New Magazine for Fathers Who Think, a Lot, About Fatherhood',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': 'Eschewing the Stress of Fatherhood in Favor of the Fun',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Magazines',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Men and Boys', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Kindling Quarterly (Magazine)',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-02-11T03:23:49+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Christopher Maag',
'person': [{'firstname': 'Christopher',
'middlename': None,
'lastname': 'Maag',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ac0345fd-8352-52f7-abfd-55f9941f3cea',
'word_count': 954,
'uri': 'nyt://article/ac0345fd-8352-52f7-abfd-55f9941f3cea'},
{'abstract': 'My mother’s brain has been melting since she had a stroke, and now the major territories include pastrami, kittens and a man in her nursing home.',
'web_url': 'https://www.nytimes.com/2016/04/24/nyregion/my-mothers-make-believe-boyfriend.html',
'snippet': 'My mother’s brain has been melting since she had a stroke, and now the major territories include pastrami, kittens and a man in her nursing home.',
'lead_paragraph': 'My mother’s brain has been melting since she had a serious stroke a year and a half ago, and if I had to map it, I’d say the major territories now are pastrami, kittens, egg rolls and, lately, a man in her nursing home unit we’ll call Sam.',
'print_section': 'MB',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-verticalTwoByThree735-v2.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-articleLarge-v2.jpg',
'height': 403,
'width': 600,
'legacy': {'xlarge': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 403},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-blog480-v2.jpg',
'height': 322,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-blog427-v2.jpg',
'height': 286,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-tmagArticle-v2.jpg',
'height': 397,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-jumbo-v2.jpg',
'height': 687,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-blog225-v2.jpg',
'height': 151,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-master675-v2.jpg',
'height': 453,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-master180-v2.jpg',
'height': 121,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-master768-v2.jpg',
'height': 515,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-popup-v2.jpg',
'height': 436,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-blog533-v2.jpg',
'height': 358,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-tmagSF-v2.jpg',
'height': 243,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-slide-v2.jpg',
'height': 403,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-superJumbo-v2.jpg',
'height': 1374,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-master1050-v2.jpg',
'height': 705,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-master495-v2.jpg',
'height': 332,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-master315-v2.jpg',
'height': 211,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-mediumFlexible177-v2.jpg',
'height': 119,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-sfSpan-v2.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-videoSixteenByNineJumbo1600-v2.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-smallSquare252-v3.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/24/nyregion/24MISINFORMED/24MISINFORMED-smallSquare168-v3.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'My Mother’s Make-Believe Boyfriend',
'kicker': 'I Was Misinformed',
'content_kicker': None,
'print_headline': 'My Mother’s Make-Believe Boyfriend',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Elderly',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Wadler, Joyce', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Dating and Relationships',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Elder Care', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Nursing Homes', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'Manhattan (NYC)',
'rank': 6,
'major': 'N'}],
'pub_date': '2016-04-21T17:15:46+0000',
'document_type': 'article',
'news_desk': 'Metropolitan',
'section_name': 'New York',
'byline': {'original': 'By Joyce Wadler',
'person': [{'firstname': 'Joyce',
'middlename': None,
'lastname': 'Wadler',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/08d6ef77-3729-508b-9257-97841f613a74',
'word_count': 930,
'uri': 'nyt://article/08d6ef77-3729-508b-9257-97841f613a74'}],
[{'abstract': 'Interviews with wounded Russian soldiers, and with relatives of others, reveal glimpses of what injured veterans can expect when sent home from Ukraine.',
'web_url': 'https://www.nytimes.com/2024/02/15/world/europe/russia-invasion-casualties-wounded.html',
'snippet': 'Interviews with wounded Russian soldiers, and with relatives of others, reveal glimpses of what injured veterans can expect when sent home from Ukraine.',
'lead_paragraph': 'The true casualty toll in Russia from its invasion of Ukraine is an enduring secret of the war. The Kremlin maintains a policy of silence, and many Russians do not speak publicly for fear of repercussions.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-articleLarge.jpg',
'height': 413,
'width': 600,
'legacy': {'xlarge': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 413},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-popup.jpg',
'height': 447,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-blog480.jpg',
'height': 330,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-blog533.jpg',
'height': 367,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-blog427.jpg',
'height': 294,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-tmagSF.jpg',
'height': 249,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-tmagArticle.jpg',
'height': 407,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-slide.jpg',
'height': 413,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-jumbo.jpg',
'height': 704,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-superJumbo.jpg',
'height': 1409,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-blog225.jpg',
'height': 155,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-master1050.jpg',
'height': 722,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-master675.jpg',
'height': 464,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-master495.jpg',
'height': 341,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-master180.jpg',
'height': 124,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-master315.jpg',
'height': 217,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-master768.jpg',
'height': 528,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-horizontalMediumAt2X.jpg',
'height': 3286,
'width': 4926,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-threeByTwoLargeAt2X.jpg',
'height': 3286,
'width': 4926,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-articleInline.jpg',
'height': 131,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-hpSmall.jpg',
'height': 112,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-blogSmallInline.jpg',
'height': 104,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mediumFlexible177.jpg',
'height': 122,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/02/15/multimedia/15russia-toll-1-gkpf/15russia-toll-1-gkpf-mobileMasterAt3x.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Russia Hides Its War Toll. We Pieced Together the Clues.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Russian Invasion of Ukraine (2022)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Prostheses', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Veterans', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Defense and Military Forces',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Russia', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Ukraine', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Hospitals', 'rank': 7, 'major': 'N'}],
'pub_date': '2024-02-15T05:01:42+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Neil MacFarquhar and Milana Mazaeva',
'person': [{'firstname': 'Neil',
'middlename': None,
'lastname': 'MacFarquhar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Milana',
'middlename': None,
'lastname': 'Mazaeva',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0ae1fe7a-029d-58b6-8490-3aa6a405a6cc',
'word_count': 399,
'uri': 'nyt://article/0ae1fe7a-029d-58b6-8490-3aa6a405a6cc'},
{'abstract': "This week's selection includes titles by Randall Kenan, Barry Meier, Jen Beagin and more.",
'web_url': 'https://www.nytimes.com/interactive/2023/07/27/books/new-paperbacks-kenan.html',
'snippet': "This week's selection includes titles by Randall Kenan, Barry Meier, Jen Beagin and more.",
'lead_paragraph': "This week's selection includes titles by Randall Kenan, Barry Meier, Jen Beagin and more.",
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/28/books/28PAPERBACK-BURST-COMBO/28PAPERBACK-BURST-COMBO-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '6 Paperbacks to Read this Week',
'kicker': 'Paperback Row',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Purdue Pharma',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Mental Health and Disorders',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Gentrification', 'rank': 4, 'major': 'N'}],
'pub_date': '2023-07-27T22:33:57+0000',
'document_type': 'multimedia',
'news_desk': 'Books',
'section_name': 'Books',
'byline': {'original': 'By Miguel Salazar',
'person': [{'firstname': 'Miguel',
'middlename': None,
'lastname': 'Salazar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/6b972872-17d4-5f94-b413-3334799118ff',
'word_count': 0,
'uri': 'nyt://interactive/6b972872-17d4-5f94-b413-3334799118ff'},
{'abstract': 'The 2-year-old boy and at least seven other people were killed after a Russian attack in Sloviansk, Ukrainian officials said. His father is believed to still be trapped in the carnage.',
'web_url': 'https://www.nytimes.com/2023/04/14/world/ukraine-strike-sloviansk-toddler.html',
'snippet': 'The 2-year-old boy and at least seven other people were killed after a Russian attack in Sloviansk, Ukrainian officials said. His father is believed to still be trapped in the carnage.',
'lead_paragraph': 'As evening fell on the battered Ukrainian city of Sloviansk on Friday, there was a brief moment of relief after a day of bombardment: A 2-year-old boy was rescued from the rubble of a residential building hit by Russian missiles earlier in the day.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-mediumSquareAt3X-v2.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-horizontalMediumAt2X.jpg',
'height': 3087,
'width': 4629,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-threeByTwoLargeAt2X.jpg',
'height': 3087,
'width': 4629,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-promo-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/14/multimedia/14-ukraine-briefing-sloviansk-promo/14-ukraine-briefing-sloviansk-4-mhqp-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'A Ukrainian toddler was pulled from the rubble after a missile strike, but he did not survive.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Russian Invasion of Ukraine (2022)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Zelenska, Olena', 'rank': 2, 'major': 'N'},
{'name': 'glocations',
'value': 'Slovyansk (Ukraine)',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Bakhmut (Ukraine)',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Civilian Casualties',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Russia', 'rank': 7, 'major': 'N'},
{'name': 'glocations', 'value': 'Ukraine', 'rank': 8, 'major': 'N'}],
'pub_date': '2023-04-14T22:52:04+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'byline': {'original': 'By Anushka Patil',
'person': [{'firstname': 'Anushka',
'middlename': None,
'lastname': 'Patil',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b00eec51-7c5e-5882-b176-6b1287b9e170',
'word_count': 399,
'uri': 'nyt://article/b00eec51-7c5e-5882-b176-6b1287b9e170'},
{'abstract': '',
'web_url': 'https://cooking.nytimes.com/recipes/1025414-salmon-onigiri',
'snippet': '',
'lead_paragraph': 'Onigiri are a classic Japanese snack, the compact rice balls are a staple of the country’s convenience stores. They are portable, flavorful and filling — the ideal travel companion — and include dozens of variations. The technique is simple: The filling of choice (salmon, in this case) gets spooned into balls of rice that are shaped into triangles and wrapped in crispy seaweed. Wetting and salting your hands before working with the rice is key — it seasons the rice and prevents the grains from sticking to your palms.',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-horizontalMediumAt2X.jpg',
'height': 3547,
'width': 5320,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-threeByTwoLargeAt2X.jpg',
'height': 3547,
'width': 5320,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/05/07/multimedia/07MOTHERS-DAYREX-onigiri-pjlg/07MOTHERS-DAYREX-onigiri-pjlg-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'Salmon Onigiri',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': 'Salmon Onigiri',
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2024-05-07T00:00:00+0000',
'document_type': 'recipe',
'news_desk': '',
'byline': {'original': 'Priya Krishna',
'person': [{'firstname': 'Priya',
'middlename': None,
'lastname': 'Krishna',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Recipe',
'_id': 'nyt://recipe/0344e765-ad5f-5676-872f-2fa99ccf36c9',
'word_count': 0,
'uri': 'nyt://recipe/0344e765-ad5f-5676-872f-2fa99ccf36c9'},
{'abstract': 'Officials also said that they had photos of Jared L. Loughner posing with a Glock semiautomatic pistol while wearing a red G-string.',
'web_url': 'https://www.nytimes.com/2011/01/15/us/15giffords.html',
'snippet': 'Officials also said that they had photos of Jared L. Loughner posing with a Glock semiautomatic pistol while wearing a red G-string.',
'lead_paragraph': 'TUCSON — Investigators revealed that Jared L. Loughner appeared to pull a frantic all-nighter last week to prepare for the shooting that killed six people, including a federal judge.',
'print_section': 'A',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/13/us/13giffords_75/13giffords_75-jumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/13/us/13giffords_75/13giffords_75-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/13/us/13giffords_75/13giffords_75-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/13/us/13giffords_75/13giffords_75-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/13/us/13giffords_75/13giffords_75-hpLarge.jpg',
'height': 250,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/13/us/13giffords_75/13giffords_75-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/01/13/us/13giffords_75/13giffords_75-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Police Describe Busy Hours Before a Gunman’s Attack',
'kicker': None,
'content_kicker': None,
'print_headline': 'Police Describe Busy Hours Before a Gunman’s Attack',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Tucson Shooting (2011)',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Giffords, Gabrielle',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'Loughner, Jared Lee',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Roll, John M', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Murders and Attempted Murders',
'rank': 5,
'major': 'N'}],
'pub_date': '2011-01-14T14:41:24+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Marc Lacey, Jo Becker and Sam Dolnick',
'person': [{'firstname': 'Marc',
'middlename': None,
'lastname': 'Lacey',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Jo',
'middlename': None,
'lastname': 'Becker',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2},
{'firstname': 'Sam',
'middlename': None,
'lastname': 'Dolnick',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 3}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/538bf0fe-61c3-594c-8e02-2914edcd81a0',
'word_count': 964,
'uri': 'nyt://article/538bf0fe-61c3-594c-8e02-2914edcd81a0'},
{'abstract': 'The recall comes after Canada failed to take back tons of household rubbish sent to the Southeast Asian country that had been labeled as recyclable.',
'web_url': 'https://www.nytimes.com/2019/05/15/world/asia/philippines-canada-trash.html',
'snippet': 'The recall comes after Canada failed to take back tons of household rubbish sent to the Southeast Asian country that had been labeled as recyclable.',
'lead_paragraph': 'MANILA — President Rodrigo Duterte of the Philippines has recalled his country’s ambassador to Canada after Ottawa failed to take back tons of rubbish it had dumped in the Southeast Asian country, the Philippine foreign secretary said Thursday.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-horizontalMediumAt2X.jpg',
'height': 3398,
'width': 5097,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-threeByTwoLargeAt2X.jpg',
'height': 3398,
'width': 5097,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/merlin_154904868_c4089e77-dc78-40fb-92c1-5df807c06d41-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/17/world/17-philippines-PRINT/16philippines-1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Philippines Recalls Its Ambassador to Canada in a Spat Over Trash',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Environment', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Diplomatic Service, Embassies and Consulates',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Duterte, Rodrigo', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Canada', 'rank': 6, 'major': 'N'},
{'name': 'glocations', 'value': 'Philippines', 'rank': 7, 'major': 'N'}],
'pub_date': '2019-05-16T03:21:09+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Jason Gutierrez',
'person': [{'firstname': 'Jason',
'middlename': None,
'lastname': 'Gutierrez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5d01c20a-50e6-5041-bb80-ae8bc05eecd8',
'word_count': 435,
'uri': 'nyt://article/5d01c20a-50e6-5041-bb80-ae8bc05eecd8'},
{'abstract': 'The development is a joyful bit of news after a turbulent year in which the couple broke away from the British royal family, started new lives in California and suffered a miscarriage.',
'web_url': 'https://www.nytimes.com/2021/02/14/world/europe/prince-harry-meghan-markle-baby.html',
'snippet': 'The development is a joyful bit of news after a turbulent year in which the couple broke away from the British royal family, started new lives in California and suffered a miscarriage.',
'lead_paragraph': '[Follow our live coverage of Oprah’s Interview with Meghan and Harry]',
'print_section': 'A',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-horizontalMediumAt2X.jpg',
'height': 3251,
'width': 4876,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-threeByTwoLargeAt2X.jpg',
'height': 3251,
'width': 4876,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/14meghan-baby-1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/14/world/14meghan-baby-1/merlin_170341083_f0e482ed-0ca6-4819-aee2-c47299e44ad9-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Prince Harry and His Wife, Meghan, Expecting Second Child',
'kicker': None,
'content_kicker': None,
'print_headline': 'Prince Harry and Meghan Are Expecting Second Child',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Royal Families',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Harry, Duke of Sussex',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Markle, Meghan', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Miscarriages', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 5,
'major': 'N'}],
'pub_date': '2021-02-14T20:44:07+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Mark Landler',
'person': [{'firstname': 'Mark',
'middlename': None,
'lastname': 'Landler',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0433c035-5a84-5e6d-8c2f-258843b52c9a',
'word_count': 401,
'uri': 'nyt://article/0433c035-5a84-5e6d-8c2f-258843b52c9a'},
{'abstract': 'Detectives have scant clues or leads at a crime scene like the one at the East River on Sunday, where the body of an infant boy was found dead.',
'web_url': 'https://www.nytimes.com/2018/08/06/nyregion/east-river-baby-investigation.html',
'snippet': 'Detectives have scant clues or leads at a crime scene like the one at the East River on Sunday, where the body of an infant boy was found dead.',
'lead_paragraph': 'The baby boy whose body was found alone in the waters beneath the Brooklyn Bridge on Sunday was surrounded, in death, by teams of investigators the following day, seeking to learn how he came to be there. Detectives searched video hoping to glimpse his final moments alive and doctors hovered over his small body.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-articleLarge.jpg',
'height': 376,
'width': 600,
'legacy': {'xlarge': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 376},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-popup.jpg',
'height': 408,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-blog480.jpg',
'height': 301,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-blog533.jpg',
'height': 334,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-blog427.jpg',
'height': 268,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-tmagSF.jpg',
'height': 227,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-tmagArticle.jpg',
'height': 371,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-slide.jpg',
'height': 376,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-jumbo.jpg',
'height': 642,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-superJumbo.jpg',
'height': 1284,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-blog225.jpg',
'height': 141,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-master1050.jpg',
'height': 658,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-master675.jpg',
'height': 423,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-master495.jpg',
'height': 310,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-master180.jpg',
'height': 113,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-master315.jpg',
'height': 198,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-master768.jpg',
'height': 482,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-horizontalMediumAt2X.jpg',
'height': 3194,
'width': 4796,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-threeByTwoLargeAt2X.jpg',
'height': 3194,
'width': 4796,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-articleInline.jpg',
'height': 119,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-hpSmall.jpg',
'height': 102,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-blogSmallInline.jpg',
'height': 95,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/merlin_142054521_2d2f76ac-9b90-48f0-b07b-5a54a3dc7501-mediumFlexible177.jpg',
'height': 111,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/07/nyregion/07babyfolo/07babyfolo-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Identifying Dead Baby Pulled From East River Poses Challenges to Police',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Drownings',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Police Department (NYC)',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'East River (NYC)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 4,
'major': 'N'}],
'pub_date': '2018-08-06T22:23:55+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Michael Wilson',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Wilson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/885d8f77-779c-58da-b80f-e4adf3b6f578',
'word_count': 455,
'uri': 'nyt://article/885d8f77-779c-58da-b80f-e4adf3b6f578'},
{'abstract': 'A well-laid out backpack will serve you well if you’re the one in charge of carrying your family’s essentials.',
'web_url': 'https://www.nytimes.com/wirecutter/blog/best-backpack-family-trip-disney-world/',
'snippet': 'A well-laid out backpack will serve you well if you’re the one in charge of carrying your family’s essentials.',
'lead_paragraph': 'A well-laid out backpack will serve you well if you’re the one in charge of carrying your family’s essentials.',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2017/10/dear-WC-A-630.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2017/10/dear-WC-A-630.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2017/10/dear-WC-A-630.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2017/10/dear-WC-A-630.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'Dear Wirecutter: What’s the Best Backpack for a Family Trip to Disney World?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2017-07-20T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/9e2ac9d9-a55c-5bd4-856c-8c0e2cf8ef0e',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/9e2ac9d9-a55c-5bd4-856c-8c0e2cf8ef0e'},
{'abstract': 'More states are allowing firearms at public universities on the bizarre premise that guns will fend off the epidemic of gun violence.',
'web_url': 'https://www.nytimes.com/2017/05/15/opinion/campus-carry-state-laws.html',
'snippet': 'More states are allowing firearms at public universities on the bizarre premise that guns will fend off the epidemic of gun violence.',
'lead_paragraph': 'Two more states — Arkansas and Georgia — have passed “campus carry” laws permitting licensed gun owners to pack concealed firearms at public universities, on the bizarre premise that students will be more secure from the nation’s epidemic of gun violence if there are more guns.',
'print_section': 'A',
'print_page': '18',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/05/15/opinion/15mon2web/15mon2web-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/05/15/opinion/15mon2web/15mon2web-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/05/15/opinion/15mon2web/15mon2web-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/05/15/opinion/15mon2web/15mon2web-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'}],
'headline': {'main': 'Campus Life: Locked, Loaded and Loopy',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'Campus Life: Locked, Loaded and Loopy',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Gun Control',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Colleges and Universities',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Firearms', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Arkansas', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Georgia', 'rank': 5, 'major': 'N'}],
'pub_date': '2017-05-15T07:21:05+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/55a8aa8b-3129-5888-b3f3-d8be39df3055',
'word_count': 467,
'uri': 'nyt://article/55a8aa8b-3129-5888-b3f3-d8be39df3055'}],
[{'abstract': 'At 44, he is more than three decades younger than Donald Trump and Joe Biden. He is subtly playing up that age gap, even if his right-wing views leave him out of step with many younger voters.',
'web_url': 'https://www.nytimes.com/2023/06/18/us/politics/ron-desantis-age.html',
'snippet': 'At 44, he is more than three decades younger than Donald Trump and Joe Biden. He is subtly playing up that age gap, even if his right-wing views leave him out of step with many younger voters.',
'lead_paragraph': 'As top-tier presidential candidates go, Ron DeSantis is something of a rarity these days. He was born after the Vietnam War, he came of age when computers were common in American homes and he still has young children of his own, rather than enough grandchildren to fill a basketball team.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-superJumbo.jpg',
'height': 1367,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumSquareAt3X-v2.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-horizontalMediumAt2X.jpg',
'height': 3718,
'width': 5573,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-threeByTwoLargeAt2X.jpg',
'height': 3718,
'width': 5573,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/17/multimedia/17pol-desantis-age-01-bcgz/17pol-desantis-age-01-bcgz-mobileMasterAt3x.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Ron DeSantis Is Young, Has Little Kids\xa0and Wants America to Know It',
'kicker': None,
'content_kicker': None,
'print_headline': 'Family in Tow, DeSantis Winks At the Age Gap',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Age, Chronological',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2024',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Primaries and Caucuses',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Polls and Public Opinion',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Personal Profile',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'DeSantis, Ron', 'rank': 7, 'major': 'N'},
{'name': 'organizations',
'value': 'Republican Party',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'DeSantis, Casey', 'rank': 9, 'major': 'N'},
{'name': 'glocations', 'value': 'Florida', 'rank': 10, 'major': 'N'}],
'pub_date': '2023-06-18T07:00:16+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Nicholas Nehamas and Ruth Igielnik',
'person': [{'firstname': 'Nicholas',
'middlename': None,
'lastname': 'Nehamas',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Ruth',
'middlename': None,
'lastname': 'Igielnik',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/109b5bc2-74cc-5620-b2bc-59c7af2bfd7f',
'word_count': 1488,
'uri': 'nyt://article/109b5bc2-74cc-5620-b2bc-59c7af2bfd7f'},
{'abstract': 'The Hong Kong association was ordered to pay about $5,150 after FIFA’s disciplinary committee found it “liable for the improper conduct” of supporters of the Hong Kong team.',
'web_url': 'https://sinosphere.blogs.nytimes.com/2015/10/06/hong-kong-fifa-china-anthem/',
'snippet': 'The Hong Kong association was ordered to pay about $5,150 after FIFA’s disciplinary committee found it “liable for the improper conduct” of supporters of the Hong Kong team.',
'lead_paragraph': 'Read in Chinese | 点击查看本文中文版',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-master495.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-soccer02-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/07/world/06sino-fifa02/06sino-fifa02-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Hong Kong Soccer Association Fined After Its Fans Boo Chinese Anthem',
'kicker': 'Sinosphere',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fines (Penalties)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'National Anthems', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Soccer', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'World Cup (Soccer)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'International Federation of Association Football (FIFA)',
'rank': 5,
'major': 'N'},
{'name': 'glocations',
'value': 'Beijing (China)',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'China', 'rank': 7, 'major': 'N'},
{'name': 'glocations', 'value': 'Hong Kong', 'rank': 8, 'major': 'N'}],
'pub_date': '2015-10-06T13:35:16+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Alan Wong',
'person': [{'firstname': 'Alan',
'middlename': None,
'lastname': 'Wong',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3096671d-2041-550d-8cd9-3b0709416574',
'word_count': 402,
'uri': 'nyt://article/3096671d-2041-550d-8cd9-3b0709416574'},
{'abstract': 'She expected to give birth on Christmas Day. What happened instead was too hard to explain.',
'web_url': 'https://www.nytimes.com/2019/09/20/style/modern-love-stillbirth-wishing-world-soft.html',
'snippet': 'She expected to give birth on Christmas Day. What happened instead was too hard to explain.',
'lead_paragraph': 'Nine years ago, shortly before my 34th birthday and during an early cold snap in the Adirondack Mountains of upstate New York, my husband and I bought two cemetery plots. Only one was for us (to share). We had gone there to purchase another and added ours only because the cemetery was having a sale: Buy one plot, get a second at half price.',
'print_section': 'ST',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-articleLarge.jpg',
'height': 379,
'width': 600,
'legacy': {'xlarge': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 379},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-popup.jpg',
'height': 411,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-blog480.jpg',
'height': 304,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-blog533.jpg',
'height': 337,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-blog427.jpg',
'height': 270,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-tmagSF.jpg',
'height': 229,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-tmagArticle.jpg',
'height': 374,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-slide.jpg',
'height': 379,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-jumbo.jpg',
'height': 647,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-superJumbo.jpg',
'height': 1295,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-blog225.jpg',
'height': 142,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-master1050.jpg',
'height': 664,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-master675.jpg',
'height': 427,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-master495.jpg',
'height': 313,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-master180.jpg',
'height': 114,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-master315.jpg',
'height': 199,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-master768.jpg',
'height': 486,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-horizontalMediumAt2X.jpg',
'height': 2571,
'width': 3856,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-threeByTwoLargeAt2X.jpg',
'height': 2571,
'width': 3856,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-articleInline.jpg',
'height': 120,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-hpSmall.jpg',
'height': 103,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-blogSmallInline.jpg',
'height': 95,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-mediumFlexible177.jpg',
'height': 112,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/22/fashion/22MODERNLOVE/22MODERNLOVE-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Wishing the World Could Be More Soft',
'kicker': 'Modern Love',
'content_kicker': None,
'print_headline': 'Wishing the World Could Be More Soft',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Love (Emotion)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Stillbirth', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Cemeteries', 'rank': 4, 'major': 'N'}],
'pub_date': '2019-09-20T04:00:06+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Kelsey Francis',
'person': [{'firstname': 'Kelsey',
'middlename': None,
'lastname': 'Francis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bb3b51c6-12cf-5e8b-a786-34199fb84d4d',
'word_count': 1545,
'uri': 'nyt://article/bb3b51c6-12cf-5e8b-a786-34199fb84d4d'},
{'abstract': 'In 1993, Stephen Shore photographed the inhabitants of Luzzara, a traditional community embracing modernity.',
'web_url': 'https://www.nytimes.com/2016/06/13/t-magazine/art/stephen-shore-italy-photography-book.html',
'snippet': 'In 1993, Stephen Shore photographed the inhabitants of Luzzara, a traditional community embracing modernity.',
'lead_paragraph': 'In 1993, Stephen Shore traveled to Luzzara, a rural district in Northern Italy, to photograph its residents. The resulting portfolio paints a picture of a traditional community slowly embracing modernity. In one image, a young woman holds a child whose disposable diaper is visible behind the edge of his bodysuit. In another, a woman smokes a cigarette astride an old bicycle, protected from the weather in a zippered plastic rain jacket. These portraits are juxtaposed with images of ornate wrought-iron work, immaculately tended fields and crumbling plaster walls.',
'print_section': 'ST',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-articleLarge.jpg',
'height': 478,
'width': 600,
'legacy': {'xlarge': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 478},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-blog480.jpg',
'height': 382,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-blog427.jpg',
'height': 340,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-tmagArticle.jpg',
'height': 471,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-jumbo.jpg',
'height': 815,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-blog225.jpg',
'height': 179,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-master675.jpg',
'height': 537,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-master180.jpg',
'height': 143,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-master768.jpg',
'height': 611,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-popup.jpg',
'height': 500,
'width': 629,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-blog533.jpg',
'height': 424,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-tmagSF.jpg',
'height': 288,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-slide.jpg',
'height': 478,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-superJumbo.jpg',
'height': 1630,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-master1050.jpg',
'height': 836,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-master495.jpg',
'height': 394,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-master315.jpg',
'height': 251,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-articleInline.jpg',
'height': 151,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-hpSmall.jpg',
'height': 130,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-blogSmallInline.jpg',
'height': 120,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-mediumFlexible177.jpg',
'height': 141,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/06/08/t-magazine/Stephen-Shore-slide-TT9G/Stephen-Shore-slide-TT9G-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Portraits of an Italian Town That Time (Almost) Left Behind',
'kicker': None,
'content_kicker': None,
'print_headline': 'Bookshelf; Back in Time',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Photography',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Shore, Stephen', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'Italy', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 4,
'major': 'N'}],
'pub_date': '2016-06-14T20:19:07+0000',
'document_type': 'article',
'news_desk': 'TStyle',
'section_name': 'T Magazine',
'subsection_name': 'Art',
'byline': {'original': 'By Hettie Judah',
'person': [{'firstname': 'Hettie',
'middlename': None,
'lastname': 'Judah',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7a86dcdc-2d1b-5967-bf4c-5247c4147510',
'word_count': 437,
'uri': 'nyt://article/7a86dcdc-2d1b-5967-bf4c-5247c4147510'},
{'abstract': 'Herre Schouwerwou offers us something to help us over the hump.',
'web_url': 'https://wordplay.blogs.nytimes.com/2016/01/19/dickens-classic/',
'snippet': 'Herre Schouwerwou offers us something to help us over the hump.',
'lead_paragraph': 'WEDNESDAY PUZZLE — What’s better than a midweek libation, a little something to get us over the hump, as it were?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Dickens Classic',
'kicker': 'Wordplay',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Cocktails',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Crossword Puzzles',
'rank': 2,
'major': 'N'}],
'pub_date': '2016-01-20T03:00:16+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Crosswords & Games',
'byline': {'original': 'By Deb Amlen',
'person': [{'firstname': 'Deb',
'middlename': None,
'lastname': 'Amlen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bfe8cb13-6339-54c8-b437-77ca1ad4436d',
'word_count': 477,
'uri': 'nyt://article/bfe8cb13-6339-54c8-b437-77ca1ad4436d'},
{'abstract': 'No visitors. Induced labor. Converted delivery wards. Tens of thousands of women across the country are giving birth in unprecedented circumstances.',
'web_url': 'https://www.nytimes.com/2020/03/26/us/coronavirus-pregnancy-maternal-health-system.html',
'snippet': 'No visitors. Induced labor. Converted delivery wards. Tens of thousands of women across the country are giving birth in unprecedented circumstances.',
'lead_paragraph': '— Smita Nadia Hussein, a mother of two, who gave birth on March 17 in Morristown, N.J.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-superJumbo.jpg',
'height': 2048,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/26/us/00IHW-PREGNANCY/00IHW-PREGNANCY-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Coronavirus Threatens an Already Strained Maternal Health System',
'kicker': 'In her words',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Hospitals', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Telemedicine', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Midwives and Doulas',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Quarantines', 'rank': 6, 'major': 'N'}],
'pub_date': '2020-03-26T20:46:02+0000',
'document_type': 'article',
'news_desk': 'Gender',
'section_name': 'U.S.',
'byline': {'original': 'By Eileen Guo',
'person': [{'firstname': 'Eileen',
'middlename': None,
'lastname': 'Guo',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7e5b8b86-7d45-5c62-b9ab-dc945f861c1a',
'word_count': 1615,
'uri': 'nyt://article/7e5b8b86-7d45-5c62-b9ab-dc945f861c1a'},
{'abstract': 'An exhibition in Sunset Park by artists hit by Hurricane Sandy; Dan Zanes gives three benefit concerts for the Brooklyn Conservatory of Music.',
'web_url': 'https://www.nytimes.com/2013/11/08/arts/art-at-industry-city-and-concerts-for-brooklyn-conservatory.html',
'snippet': 'An exhibition in Sunset Park by artists hit by Hurricane Sandy; Dan Zanes gives three benefit concerts for the Brooklyn Conservatory of Music.',
'lead_paragraph': 'A little over a year since Hurricane Sandy ransacked the city, certain communities are still recovering. Artists whose studios and galleries are clustered in hard-hit neighborhoods, like Chelsea in Manhattan and Red Hook in Brooklyn, were particularly affected, and to celebrate their perseverance, the artist and Brooklyn Rail publisher Phong Bui, whose own studio was ruined in the storm, has organized “Come Together: Surviving Sandy,” a new exhibition at the vast Industry City complex in Sunset Park, Brooklyn.',
'print_section': 'C',
'print_page': '39',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Art at Industry City, and Concerts for Brooklyn Conservatory',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Art', 'rank': 1, 'major': 'N'},
{'name': 'subject',
'value': 'Hurricane Sandy (2012)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Music', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Zanes, Dan', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-11-07T22:26:30+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Arts',
'byline': {'original': 'By A. C. Lee',
'person': [{'firstname': 'A.',
'middlename': 'C.',
'lastname': 'Lee',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c16c1028-c6aa-549a-9b77-37935f9e16b9',
'word_count': 421,
'uri': 'nyt://article/c16c1028-c6aa-549a-9b77-37935f9e16b9'},
{'abstract': 'Separations of migrant families are continuing in substantial numbers, often for reasons as simple as a parent with a traffic ticket, the American Civil Liberties Union reported.',
'web_url': 'https://www.nytimes.com/2019/07/30/us/migrant-family-separations.html',
'snippet': 'Separations of migrant families are continuing in substantial numbers, often for reasons as simple as a parent with a traffic ticket, the American Civil Liberties Union reported.',
'lead_paragraph': 'LOS ANGELES — In the year since President Trump officially ended family separations at the southern border, immigration authorities have removed more than 900 migrant children from their families, sometimes for reasons as minor as a parent not changing a baby’s diaper or having a traffic citation for driving without a license, according to new documents filed Tuesday in federal court.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-horizontalMediumAt2X.jpg',
'height': 2667,
'width': 4000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-threeByTwoLargeAt2X.jpg',
'height': 2667,
'width': 4000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/30FAMILY-SEPARATIONS-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/30/us/30FAMILY-SEPARATIONS/merlin_153075219_9e18180e-b93e-425b-8f6f-223e9bb72db1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'No More Family Separations, Except These 900',
'kicker': None,
'content_kicker': None,
'print_headline': 'No More Family Separations, Except These 900',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Family Separation Policy (US Immigration)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration Detention',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'American Civil Liberties Union',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Border Patrol (US)',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Sabraw, Dana M', 'rank': 9, 'major': 'N'}],
'pub_date': '2019-07-30T20:44:38+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Miriam Jordan',
'person': [{'firstname': 'Miriam',
'middlename': None,
'lastname': 'Jordan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6a505e04-9ac1-50ea-8cdb-07a3af5058d4',
'word_count': 1761,
'uri': 'nyt://article/6a505e04-9ac1-50ea-8cdb-07a3af5058d4'},
{'abstract': 'Seamus Heaney, who died on Friday, was a great poet. He was also hilarious.',
'web_url': 'https://takingnote.blogs.nytimes.com/2013/08/30/seamus-was-a-funny-guy/',
'snippet': 'Seamus Heaney, who died on Friday, was a great poet. He was also hilarious.',
'lead_paragraph': 'Seamus Heaney, who died on Friday, was a great poet, a scholar, a translator of “Beowulf,” et cetera and so on.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Seamus Heaney Was a Funny Guy',
'kicker': 'Taking Note',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Heaney, Seamus',
'rank': 1,
'major': 'N'}],
'pub_date': '2013-08-30T17:34:40+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Opinion',
'byline': {'original': 'By Lawrence Downes',
'person': [{'firstname': 'Lawrence',
'middlename': None,
'lastname': 'Downes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/36653dfb-ca34-5ded-aef4-379ea99484ef',
'word_count': 407,
'uri': 'nyt://article/36653dfb-ca34-5ded-aef4-379ea99484ef'},
{'abstract': 'Flying with an unhappy child can make everyone miserable — the parents, other passengers, the child — but what can you do? Here are some of your best tips to help.',
'web_url': 'https://www.nytimes.com/2019/03/13/smarter-living/32-tips-for-surviving-and-parenting-crying-babies-on-planes.html',
'snippet': 'Flying with an unhappy child can make everyone miserable — the parents, other passengers, the child — but what can you do? Here are some of your best tips to help.',
'lead_paragraph': '[The topics parents are talking about. Evidence-based guidance. Personal stories that matter. Sign up now to get NYT Parenting in your inbox every week.]',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-articleLarge-v3.jpg',
'height': 383,
'width': 600,
'legacy': {'xlarge': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-articleLarge-v3.jpg',
'xlargewidth': 600,
'xlargeheight': 383},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-popup-v3.jpg',
'height': 414,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-blog480-v3.jpg',
'height': 306,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-blog533-v3.jpg',
'height': 340,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-blog427-v3.jpg',
'height': 272,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-tmagSF-v3.jpg',
'height': 231,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-tmagArticle-v3.jpg',
'height': 377,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-slide-v3.jpg',
'height': 383,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-jumbo-v3.jpg',
'height': 653,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-superJumbo-v3.jpg',
'height': 1306,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-blog225-v3.jpg',
'height': 143,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-master1050-v3.jpg',
'height': 670,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-master675-v3.jpg',
'height': 430,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-master495-v3.jpg',
'height': 316,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-master180-v3.jpg',
'height': 115,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-master315-v3.jpg',
'height': 201,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-master768-v3.jpg',
'height': 490,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-thumbStandard-v4.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-thumbStandard-v4.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-blogSmallThumb-v4.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-thumbLarge-v4.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-smallSquare168-v4.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-smallSquare252-v4.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-square320-v4.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-moth-v4.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-filmstrip-v4.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-square640-v4.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-mediumSquare149-v4.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-sfSpan-v4.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-largeHorizontal375-v4.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-largeHorizontalJumbo-v4.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-horizontalMediumAt2X-v4.jpg',
'height': 3894,
'width': 5840,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-hpLarge-v3.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-largeWidescreen573-v3.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-largeWidescreen1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-thumbWide-v4.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-thumbWide-v4.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoThumb-v4.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoLarge-v4.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-mediumThreeByTwo210-v4.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-mediumThreeByTwo225-v4.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-mediumThreeByTwo440-v4.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-mediumThreeByTwo252-v4.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-mediumThreeByTwo378-v4.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-threeByTwoLargeAt2X-v4.jpg',
'height': 3894,
'width': 5840,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-threeByTwoMediumAt2X-v4.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-threeByTwoSmallAt2X-v4.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-articleInline-v3.jpg',
'height': 121,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-hpSmall-v3.jpg',
'height': 104,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-blogSmallInline-v3.jpg',
'height': 96,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-mediumFlexible177-v3.jpg',
'height': 113,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoHpMedium-v3.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine600-v3.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine540-v3.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine495-v3.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine390-v3.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine480-v3.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine310-v3.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine225-v3.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine96-v3.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine3000-v3.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine768-v3.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNine150-v3.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoSixteenByNineJumbo1600-v3.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-videoFifteenBySeven2610-v3.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-facebookJumbo-v3.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-watch308-v4.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-watch268-v4.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/03/12/smarter-living/12sl_flyingbabies/12sl_flyingbabies-verticalTwoByThree735-v4.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '32 Tips for Surviving (and Parenting) Crying Babies on Planes',
'kicker': 'Crowdwise',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Airports', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-03-13T21:30:01+0000',
'document_type': 'article',
'news_desk': 'Smarter Living',
'section_name': 'Smarter Living',
'byline': {'original': 'By David Pogue',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Pogue',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e9a5f9f0-0fa8-58a9-8bc6-0d5b979d58fd',
'word_count': 1575,
'uri': 'nyt://article/e9a5f9f0-0fa8-58a9-8bc6-0d5b979d58fd'}],
[{'abstract': 'Clever storage makes picking up toys a game of its own.',
'web_url': 'https://www.nytimes.com/2012/11/22/garden/shopping-for-toy-storage-with-michael-aram.html',
'snippet': 'Clever storage makes picking up toys a game of its own.',
'lead_paragraph': 'WHEN Michael Aram and his partner, Aret Tikiryan, welcomed their twins, Anabel and Thadeus, into their lives last year, they were living in a sleek modern triplex.',
'print_section': 'D',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP_SPAN-articleLarge-v2.jpg',
'height': 435,
'width': 600,
'legacy': {'xlarge': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP_SPAN-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 435},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP_SPAN-articleLarge-v2.jpg',
'height': 435,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP_SPAN-sfSpan-v2.jpg',
'height': 320,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/22/garden/22SHOP_SPAN/22SHOP-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Toy Storage',
'kicker': 'Shopping With Michael Aram',
'content_kicker': None,
'print_headline': 'When Playtime Is Over',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Furniture', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Storage', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Toys', 'rank': 4, 'major': 'N'}],
'pub_date': '2012-11-21T23:45:40+0000',
'document_type': 'article',
'news_desk': 'Home',
'section_name': 'Home & Garden',
'byline': {'original': 'By Rima Suqi',
'person': [{'firstname': 'Rima',
'middlename': None,
'lastname': 'Suqi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b06dd461-d2f9-5a76-b1ff-7142589a2023',
'word_count': 477,
'uri': 'nyt://article/b06dd461-d2f9-5a76-b1ff-7142589a2023'},
{'abstract': 'What we’re reading in The Times and elsewhere, including articles about the closing of a onetime hotspot for mobsters and hot dog vendors who owe the city nearly $1 million.',
'web_url': 'https://cityroom.blogs.nytimes.com/2012/03/12/morning-buzz-march-12-the-mayors-coffee-shop/',
'snippet': 'What we’re reading in The Times and elsewhere, including articles about the closing of a onetime hotspot for mobsters and hot dog vendors who owe the city nearly $1 million.',
'lead_paragraph': 'Good morning. It will be a beautiful day in New York City, mostly sunny with highs in the upper 60s.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Morning Buzz, March 12: A ‘B’ for Mayor’s Coffee Shop',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-03-12T14:00:11+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Hannah Miet',
'person': [{'firstname': 'Hannah',
'middlename': None,
'lastname': 'Miet',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/668053e2-fdf9-5687-8879-60a5a7c6bed0',
'word_count': 370,
'uri': 'nyt://article/668053e2-fdf9-5687-8879-60a5a7c6bed0'},
{'abstract': 'A federal judge is expected to rule soon on whether the government must provide shelter, food and medical care to minors while they await processing.',
'web_url': 'https://www.nytimes.com/2024/03/28/health/children-migrants-border-health.html',
'snippet': 'A federal judge is expected to rule soon on whether the government must provide shelter, food and medical care to minors while they await processing.',
'lead_paragraph': 'To Dr. Theresa Cheng, the scene was “apocalyptic.”',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-horizontalMediumAt2X.jpg',
'height': 2578,
'width': 3865,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-threeByTwoLargeAt2X.jpg',
'height': 2578,
'width': 3865,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/26/multimedia/00-immig-kids-01-pmhq/00-immig-kids-01-pmhq-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'Health Concerns Mount for Migrant Children at Outdoor Waiting Sites',
'kicker': None,
'content_kicker': None,
'print_headline': 'Public Health Fails for Youth At the Border',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Illegal Immigration',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Border Barriers', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Immigration Detention',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Humanitarian Aid', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Suits and Litigation (Civil)',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Border Patrol (US)',
'rank': 8,
'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 9,
'major': 'N'},
{'name': 'organizations',
'value': 'Justice Department',
'rank': 10,
'major': 'N'},
{'name': 'glocations', 'value': 'California', 'rank': 11, 'major': 'N'},
{'name': 'glocations',
'value': 'San Diego County (Calif)',
'rank': 12,
'major': 'N'},
{'name': 'subject',
'value': 'your-feed-healthcare',
'rank': 13,
'major': 'N'},
{'name': 'subject',
'value': 'your-feed-science',
'rank': 14,
'major': 'N'}],
'pub_date': '2024-03-28T14:31:29+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Emily Baumgaertner',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Baumgaertner',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d9307abd-fd57-518c-86f8-44dab05ca43d',
'word_count': 1678,
'uri': 'nyt://article/d9307abd-fd57-518c-86f8-44dab05ca43d'},
{'abstract': 'Female stars ruled the night at the Baby2Baby gala, which brought in donations of more than $10 million in service of families in poverty.',
'web_url': 'https://www.nytimes.com/2022/11/18/style/baby2baby.html',
'snippet': 'Female stars ruled the night at the Baby2Baby gala, which brought in donations of more than $10 million in service of families in poverty.',
'lead_paragraph': 'WEST HOLLYWOOD, Calif. — Glamour, altruism and cognitive dissonance hung in the air.',
'print_section': 'ST',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-articleLarge.jpg',
'height': 818,
'width': 600,
'legacy': {'xlarge': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 818},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-popup.jpg',
'height': 500,
'width': 367,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-blog480.jpg',
'height': 655,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-blog533.jpg',
'height': 727,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-blog427.jpg',
'height': 582,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-tmagSF.jpg',
'height': 494,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-tmagArticle.jpg',
'height': 807,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-slide.jpg',
'height': 500,
'width': 367,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-jumbo.jpg',
'height': 1024,
'width': 751,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-superJumbo.jpg',
'height': 2048,
'width': 1502,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-blog225.jpg',
'height': 307,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-master1050.jpg',
'height': 1432,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-master675.jpg',
'height': 920,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-master495.jpg',
'height': 675,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-master180.jpg',
'height': 245,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-master315.jpg',
'height': 430,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-master768.jpg',
'height': 1047,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-horizontalMediumAt2X.jpg',
'height': 1692,
'width': 2540,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-threeByTwoLargeAt2X.jpg',
'height': 1692,
'width': 2540,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-articleInline.jpg',
'height': 259,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-hpSmall.jpg',
'height': 222,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-blogSmallInline.jpg',
'height': 206,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mediumFlexible177.jpg',
'height': 241,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/11/20/fashion/00BABY2BABY-TOP-B/00BABY2BABY-TOP-B-mobileMasterAt3x.jpg',
'height': 2455,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Raising Millions at Hollywood’s ‘Mom Prom’',
'kicker': None,
'content_kicker': None,
'print_headline': 'Millions Raised for Charity at a ‘Mom Prom’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Philanthropy',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parties (Social)', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Celebrities', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'organizations', 'value': 'Baby2Baby', 'rank': 5, 'major': 'N'},
{'name': 'persons', 'value': 'ALBA, JESSICA', 'rank': 6, 'major': 'N'},
{'name': 'persons', 'value': 'Kardashian, Kim', 'rank': 7, 'major': 'N'},
{'name': 'persons',
'value': 'Patricof, Kelly Sawyer',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Wilde, Olivia', 'rank': 9, 'major': 'N'},
{'name': 'persons',
'value': 'Weinstein, Norah (1976- )',
'rank': 10,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 11, 'major': 'N'}],
'pub_date': '2022-11-18T18:50:12+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Katherine Rosman',
'person': [{'firstname': 'Katherine',
'middlename': None,
'lastname': 'Rosman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b07af7c3-f312-51fe-bee8-a45e98348d47',
'word_count': 1534,
'uri': 'nyt://article/b07af7c3-f312-51fe-bee8-a45e98348d47'},
{'abstract': 'A Valpak executive’s strategies for coupon cutting and using.',
'web_url': 'https://bucks.blogs.nytimes.com/2011/03/02/product-of-the-pros-coupons/',
'snippet': 'A Valpak executive’s strategies for coupon cutting and using.',
'lead_paragraph': 'Nancy Cook, vice president of new media business development for the coupon provider Valpak, says she doesn’t tend to base her shopping decisions on what she has coupons for. Instead, she looks for coupons for things she plans to buy anyway.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Product of the Pros: Coupons',
'kicker': 'Bucks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-03-02T18:15:26+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Your Money',
'byline': {'original': 'By Jennifer Saranow Schultz',
'person': [{'firstname': 'Jennifer',
'middlename': 'Saranow',
'lastname': 'Schultz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/b03fec3b-b203-5ab6-8e7e-0a025b88cc86',
'word_count': 466,
'uri': 'nyt://article/b03fec3b-b203-5ab6-8e7e-0a025b88cc86'},
{'abstract': 'A reporter laments the avalanche of “green” Earth Day promotions that actually encourage wasteful consumption.',
'web_url': 'https://green.blogs.nytimes.com/2012/04/22/that-special-day-bah-humbug/',
'snippet': 'A reporter laments the avalanche of “green” Earth Day promotions that actually encourage wasteful consumption.',
'lead_paragraph': 'When I was growing up in the suburbs of New York, our first local Earth Day was organized around a drive to a town field where families were urged to dump items from their basements for recycling rather than tossing them in the trash. Hmmm. Recycling. It was an eye-opening concept for a kid in 1970.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'That Special Day: Bah, Humbug?',
'kicker': 'Green',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Earth', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Earth Day', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Sustainable Living',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Target Corporation',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Verizon Communications Inc',
'rank': 8,
'major': 'N'}],
'pub_date': '2012-04-22T13:00:05+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Science',
'subsection_name': 'Environment',
'byline': {'original': 'By Elisabeth Rosenthal',
'person': [{'firstname': 'Elisabeth',
'middlename': None,
'lastname': 'Rosenthal',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/aeb85c31-b85a-5d77-aa4b-7a9f13b1c8f6',
'word_count': 435,
'uri': 'nyt://article/aeb85c31-b85a-5d77-aa4b-7a9f13b1c8f6'},
{'abstract': 'The authorities get a break in a case in which a grainy video shows attacks on disabled women.',
'web_url': 'https://www.nytimes.com/2011/01/08/us/08disabled.html',
'snippet': 'The authorities get a break in a case in which a grainy video shows attacks on disabled women.',
'lead_paragraph': 'LOS ANGELES \x97 It started with an anonymous package mailed to the Los Angeles County Sheriff’s Department, full of some of the most gruesome evidence investigators had ever seen: 100 hours of video footage that showed men sexually assaulting severely disabled women. Some assaults took place at residential care centers.',
'print_section': 'A',
'print_page': '13',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/08/us/SUBDISABLED/SUBDISABLED-jumbo.jpg',
'height': 736,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/08/us/SUBDISABLED/SUBDISABLED-popup.jpg',
'height': 467,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/08/us/SUBDISABLED/SUBDISABLED-articleInline.jpg',
'height': 137,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/08/us/SUBDISABLED/SUBDISABLED-sfSpan.jpg',
'height': 284,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/08/us/SUBDISABLED/SUBDISABLED-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/01/08/us/SUBDISABLED/SUBDISABLED-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Los Angeles Officials Identify Video Assault Suspects',
'kicker': None,
'content_kicker': None,
'print_headline': 'Los Angeles Officials Identify Video Assault Suspects',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Assaults',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Handicapped', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Sex Crimes', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-01-08T03:08:45+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Ian Lovett',
'person': [{'firstname': 'Ian',
'middlename': None,
'lastname': 'Lovett',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7c449dea-9010-5ab3-816f-86f4c670304c',
'word_count': 482,
'uri': 'nyt://article/7c449dea-9010-5ab3-816f-86f4c670304c'},
{'abstract': 'A little over a decade ago, Mexico couldn’t issue 10-year bonds. Now investors are entrusting money to the country for a century.',
'web_url': 'https://www.nytimes.com/2010/10/11/opinion/11mon4.html',
'snippet': 'A little over a decade ago, Mexico couldn’t issue 10-year bonds. Now investors are entrusting money to the country for a century.',
'lead_paragraph': 'My grandmother was born 100 years ago in the city of Pachuca, an hour’s drive north of Mexico City. She died more than 10 years ago. But last week, as Mexico became one of the few countries ever to sell “century bonds,” I couldn’t help picturing her as a baby, swathed in cloth diapers, a turbulent century set to roll out before her.',
'print_section': 'A',
'print_page': '22',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'What’s Your Timeline?',
'kicker': 'Editorial Notebook',
'content_kicker': None,
'print_headline': 'What’s Your Timeline?',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Government Bonds',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Mexico', 'rank': 2, 'major': 'N'}],
'pub_date': '2010-10-11T03:48:02+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By Eduardo Porter',
'person': [{'firstname': 'Eduardo',
'middlename': None,
'lastname': 'Porter',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Editorial',
'_id': 'nyt://article/cb5cb8b0-249b-5e3f-b89f-95eb5a67ae11',
'word_count': 445,
'uri': 'nyt://article/cb5cb8b0-249b-5e3f-b89f-95eb5a67ae11'},
{'abstract': 'Evonik is buying a 9 percent stake in the soccer team Borussia Dortmund, emulating Adidas, Audi, Allianz and Bayern Munich. But the potential benefits of its deal are hazy at best, writes Olaf Storbeck of Reuters Breakingviews.',
'web_url': 'https://dealbook.nytimes.com/2014/06/30/german-chemical-companys-curious-goal/',
'snippet': 'Evonik is buying a 9 percent stake in the soccer team Borussia Dortmund, emulating Adidas, Audi, Allianz and Bayern Munich. But the potential benefits of its deal are hazy at best, writes Olaf Storbeck of Reuters Breakingviews.',
'lead_paragraph': 'A $400 million tie-up between the specialty chemical maker Evonik Industries and the German soccer team Borussia Dortmund has few merits for the company’s shareholders. Evonik, Germany’s third-largest chemical company, hopes that the alliance with the club will turn its brand into a global household name. The snag is that Evonik doesn’t do any business with end users.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'German Chemical Company’s Curious Goal',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Bayern Munich (Soccer Team)',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Borussia Dortmund (Soccer Team)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Evonik Industries',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-06-30T19:03:59+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Olaf Storbeck',
'person': [{'firstname': 'Olaf',
'middlename': None,
'lastname': 'Storbeck',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d8181cef-8169-5299-8a8b-4c5b3fc25048',
'word_count': 390,
'uri': 'nyt://article/d8181cef-8169-5299-8a8b-4c5b3fc25048'},
{'abstract': 'A new system of Internet addressing is being tested Wednesday. If you didn’t notice, that’s good.',
'web_url': 'https://bits.blogs.nytimes.com/2011/06/08/happy-ipv6-day/',
'snippet': 'A new system of Internet addressing is being tested Wednesday. If you didn’t notice, that’s good.',
'lead_paragraph': 'Get out the confetti. Wednesday is World IPv6 Day.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Happy IPv6 Day',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Computers and the Internet',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-06-08T12:58:40+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'byline': {'original': 'By Verne G. Kopytoff',
'person': [{'firstname': 'Verne',
'middlename': 'G.',
'lastname': 'Kopytoff',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/43b2b37d-8830-5f5f-91c7-8f0c3bfc6de2',
'word_count': 480,
'uri': 'nyt://article/43b2b37d-8830-5f5f-91c7-8f0c3bfc6de2'}],
[{'abstract': 'Smugglers threatened to rape and kill three girls if their mother did not pay more money for their entry into the United States, officials said.',
'web_url': 'https://www.nytimes.com/2010/12/05/us/05arizona.html',
'snippet': 'Smugglers threatened to rape and kill three girls if their mother did not pay more money for their entry into the United States, officials said.',
'lead_paragraph': 'PHOENIX \x97 It could have been mistaken for a day care center, with so many children of all ages inside. But the authorities said that the crowded house in a working-class neighborhood here was really a drop point for a human-smuggling operation and that the 10 children, ages 2 to 17, were illegal immigrants being held for ransom.',
'print_section': 'A',
'print_page': '36',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Mother’s Call Led to Rescue of 10 Children From Smugglers in Phoenix, Officials Say',
'kicker': None,
'content_kicker': None,
'print_headline': 'Mother’s Call Led to Rescue of 10 Children From Smugglers in Phoenix, Officials Say',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Human Trafficking',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Kidnapping', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Illegal Immigrants',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Smuggling', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Extortion and Blackmail',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Federal Bureau of Investigation',
'rank': 7,
'major': 'N'},
{'name': 'glocations',
'value': 'Phoenix (Ariz)',
'rank': 8,
'major': 'N'}],
'pub_date': '2010-12-05T00:04:10+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Marc Lacey',
'person': [{'firstname': 'Marc',
'middlename': None,
'lastname': 'Lacey',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/089d3e14-b341-50a7-b822-2f61484369ae',
'word_count': 434,
'uri': 'nyt://article/089d3e14-b341-50a7-b822-2f61484369ae'},
{'abstract': 'By the time sheriff’s deputies in Yavapai County, Ariz., picked up the tiny footprints of 2-year-old Emmett Trapp, the boy had already succumbed to the elements.',
'web_url': 'https://www.nytimes.com/2010/08/06/us/06desert.html',
'snippet': 'By the time sheriff’s deputies in Yavapai County, Ariz., picked up the tiny footprints of 2-year-old Emmett Trapp, the boy had already succumbed to the elements.',
'lead_paragraph': 'PHOENIX \x97 It was not a needle in a haystack but a toddler in the desert, both of which are extremely challenging to find.',
'print_section': 'A',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/06/us/Desert/Desert-jumbo.jpg',
'height': 1024,
'width': 969,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/06/us/Desert/Desert-popup.jpg',
'height': 500,
'width': 473,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/06/us/Desert/Desert-articleInline.jpg',
'height': 243,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/06/us/Desert/Desert-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/08/06/us/Desert/Desert-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Body of Missing Boy Is Found in Desert About a Mile From Home',
'kicker': None,
'content_kicker': None,
'print_headline': 'Body of Missing Boy Is Found in Desert About a Mile From Home',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Youth',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Police', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'Arizona', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Missing Persons', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 5,
'major': 'N'}],
'pub_date': '2010-08-06T01:57:55+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Marc Lacey',
'person': [{'firstname': 'Marc',
'middlename': None,
'lastname': 'Lacey',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/49c8c806-742a-5081-a7c3-28f111fa6313',
'word_count': 417,
'uri': 'nyt://article/49c8c806-742a-5081-a7c3-28f111fa6313'},
{'abstract': 'Marc Lore, the entrepreneur behind Diapers.com and Jet.com, would like to disrupt food delivery. But he really wants to build a brand that actually lasts.',
'web_url': 'https://www.nytimes.com/2024/03/10/business/marc-lore-wonder-food-delivery.html',
'snippet': 'Marc Lore, the entrepreneur behind Diapers.com and Jet.com, would like to disrupt food delivery. But he really wants to build a brand that actually lasts.',
'lead_paragraph': 'When Marc Lore, the e-commerce billionaire, left his position as the chief executive of Walmart.com in 2021, he began to dabble in a variety of long-odds attempts to change the world. He backed a nuclear fusion start-up, and another designing flying taxis. Frustrated with the current state of capitalism, he embarked on plans to build, from scratch, a Bjarke Ingels-designed city of five million in the American West.',
'print_section': 'BU',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-articleLarge.jpg',
'height': 749,
'width': 600,
'legacy': {'xlarge': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 749},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-popup.jpg',
'height': 500,
'width': 401,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-blog480.jpg',
'height': 599,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-blog533.jpg',
'height': 666,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-blog427.jpg',
'height': 533,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-tmagSF.jpg',
'height': 452,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-tmagArticle.jpg',
'height': 739,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-slide.jpg',
'height': 500,
'width': 401,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-jumbo.jpg',
'height': 1024,
'width': 820,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-superJumbo.jpg',
'height': 2048,
'width': 1640,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-blog225.jpg',
'height': 281,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-master1050.jpg',
'height': 1311,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-master675.jpg',
'height': 843,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-master495.jpg',
'height': 618,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-master180.jpg',
'height': 225,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-master315.jpg',
'height': 393,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-master768.jpg',
'height': 959,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumSquareAt3X-v2.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-horizontalMediumAt2X.jpg',
'height': 1679,
'width': 2520,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-threeByTwoLargeAt2X-v2.jpg',
'height': 1630,
'width': 2447,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-threeByTwoMediumAt2X-v2.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-articleInline.jpg',
'height': 237,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-hpSmall.jpg',
'height': 204,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-blogSmallInline.jpg',
'height': 189,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mediumFlexible177.jpg',
'height': 221,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-mobileMasterAt3x.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/03/10/multimedia/10disrupt-delivery1-bcvw/10disrupt-delivery1-bcvw-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'He’s Not Just Looking to Make a Quick Billion',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Billionaire’s Giant Mealtime Gamble',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Lore, Marc (1971- )',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Wonder Group Inc',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Delivery Services', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Start-ups', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Venture Capital', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Entrepreneurship', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Food', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Personal Profile',
'rank': 9,
'major': 'N'},
{'name': 'subject',
'value': 'High Net Worth Individuals',
'rank': 10,
'major': 'N'},
{'name': 'organizations',
'value': 'Diapers.com',
'rank': 11,
'major': 'N'},
{'name': 'organizations',
'value': 'Jet.com Inc',
'rank': 12,
'major': 'N'},
{'name': 'organizations',
'value': 'Walmart Stores Inc',
'rank': 13,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 14,
'major': 'N'},
{'name': 'persons',
'value': 'Bezos, Jeffrey P',
'rank': 15,
'major': 'N'}],
'pub_date': '2024-03-10T09:01:54+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Business Day',
'byline': {'original': 'By Elizabeth G. Dunn',
'person': [{'firstname': 'Elizabeth',
'middlename': 'G.',
'lastname': 'Dunn',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cc0dc70c-b5ba-5ac2-befa-5b6a2c6b91da',
'word_count': 3021,
'uri': 'nyt://article/cc0dc70c-b5ba-5ac2-befa-5b6a2c6b91da'},
{'abstract': 'Nausea, vomiting, stomach pain: The illness is contagious (and highly unpleasant).',
'web_url': 'https://www.nytimes.com/2023/02/10/well/live/norovirus-symptoms-treatment-prevention.html',
'snippet': 'Nausea, vomiting, stomach pain: The illness is contagious (and highly unpleasant).',
'lead_paragraph': 'Cases of norovirus — a common, contagious virus that can induce vomiting and diarrhea — are generally rising across the United States, according to new data from the Centers for Disease Control and Prevention. Norovirus is spreading elsewhere, too; in England, cases are reportedly 66 percent higher than the average around this time of year, with the largest increase among people ages 65 and older.',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-articleLarge.jpg',
'height': 337,
'width': 600,
'legacy': {'xlarge': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 337},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-popup.jpg',
'height': 366,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-blog480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-blog533.jpg',
'height': 300,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-blog427.jpg',
'height': 240,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-tmagSF.jpg',
'height': 204,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-tmagArticle.jpg',
'height': 333,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-slide.jpg',
'height': 337,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-jumbo.jpg',
'height': 576,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-superJumbo.jpg',
'height': 1152,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-blog225.jpg',
'height': 127,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-master1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-master675.jpg',
'height': 380,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-master495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-master180.jpg',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-master315.jpg',
'height': 177,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-master768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-horizontalMediumAt2X.jpg',
'height': 4268,
'width': 6402,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-threeByTwoLargeAt2X.jpg',
'height': 4268,
'width': 6402,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-articleInline.jpg',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-hpSmall.jpg',
'height': 92,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mediumFlexible177.jpg',
'height': 100,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/02/21/well/10WELL-NOROVIRUS1/10WELL-NOROVIRUS1-mobileMasterAt3x.jpg',
'height': 1012,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Oh, No. Time to Worry About Norovirus Again.',
'kicker': None,
'content_kicker': None,
'print_headline': 'Norovirus Rears Its Annoying Head',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Norovirus',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Diarrhea', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Dehydration', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Hygiene and Cleanliness',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Disease Rates', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Service',
'rank': 7,
'major': 'N'}],
'pub_date': '2023-02-10T22:30:52+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'subsection_name': 'Live',
'byline': {'original': 'By Dani Blum',
'person': [{'firstname': 'Dani',
'middlename': None,
'lastname': 'Blum',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b7a59f29-f03d-5d58-a0ca-4e625f6fc960',
'word_count': 1037,
'uri': 'nyt://article/b7a59f29-f03d-5d58-a0ca-4e625f6fc960'},
{'abstract': 'As an expectant dad with cerebral palsy I tried to prepare, but a delivery emergency gave me a crash course.',
'web_url': 'https://www.nytimes.com/2021/11/05/well/dad-cerebral-palsy.html',
'snippet': 'As an expectant dad with cerebral palsy I tried to prepare, but a delivery emergency gave me a crash course.',
'lead_paragraph': 'Scrolling past dozens of baby carriers online, I couldn’t find one that would allow me to strap an infant to my chest using only one hand. In a few months, my wife, Lisa, would give birth to our first child, and I was searching for the perfect carrier to ease my anxiety as an expectant father with cerebral palsy.',
'print_section': 'D',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-superJumbo.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumSquareAt3X.jpg',
'height': 1165,
'width': 1166,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-threeByTwoLargeAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/23/well/04well-parenting-with-cerebral-palsy/04well-parenting-with-cerebral-palsy-mobileMasterAt3x.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'With a Baby on the Way, It Was Time to Embrace My Disability',
'kicker': None,
'content_kicker': None,
'print_headline': 'Facing Fatherhood, and Embracing a Disability',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Cerebral Palsy', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Disabilities', 'rank': 5, 'major': 'N'}],
'pub_date': '2021-11-05T09:00:07+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'byline': {'original': 'By Christopher Vaughan',
'person': [{'firstname': 'Christopher',
'middlename': None,
'lastname': 'Vaughan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d5bbc13e-4f54-5970-87b6-55e51624b4be',
'word_count': 1050,
'uri': 'nyt://article/d5bbc13e-4f54-5970-87b6-55e51624b4be'},
{'abstract': 'In his new memoir, Keith Gessen wonders if his young son is more badly behaved than other children.',
'web_url': 'https://www.nytimes.com/2022/06/06/books/review-raising-raffi-keith-gessen.html',
'snippet': 'In his new memoir, Keith Gessen wonders if his young son is more badly behaved than other children.',
'lead_paragraph': 'Diaper backward, Marshall McLuhan noticed, spells “repaid.”',
'print_section': 'C',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-articleLarge-v2.png',
'height': 841,
'width': 600,
'legacy': {'xlarge': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-articleLarge-v2.png',
'xlargewidth': 600,
'xlargeheight': 841},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-popup-v2.png',
'height': 500,
'width': 357,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-blog480-v2.png',
'height': 673,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-blog533-v2.png',
'height': 747,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-blog427-v2.png',
'height': 599,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-tmagSF-v2.png',
'height': 507,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-tmagArticle-v2.png',
'height': 830,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-slide-v2.png',
'height': 500,
'width': 357,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-jumbo-v2.png',
'height': 1024,
'width': 731,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-superJumbo-v2.png',
'height': 2048,
'width': 1461,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-blog225-v2.png',
'height': 315,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-master1050-v2.png',
'height': 1472,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-master675-v2.png',
'height': 946,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-master495-v2.png',
'height': 694,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-master180-v2.png',
'height': 252,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-master315-v2.png',
'height': 442,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-master768-v2.png',
'height': 1077,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-thumbStandard-v2.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-thumbStandard-v2.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-blogSmallThumb-v2.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-thumbLarge-v2.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-smallSquare168-v2.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-smallSquare252-v2.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-square320-v2.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-moth-v2.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-filmstrip-v2.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-square640-v2.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumSquare149-v2.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumSquareAt3X-v2.png',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-sfSpan-v2.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-largeHorizontal375-v2.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-largeHorizontalJumbo-v2.png',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-horizontalMediumAt2X-v2.png',
'height': 2486,
'width': 3729,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-hpLarge-v2.png',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-largeWidescreen573-v2.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-largeWidescreen1050-v2.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-thumbWide-v2.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-thumbWide-v2.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoThumb-v2.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoLarge-v2.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumThreeByTwo210-v2.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumThreeByTwo225-v2.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumThreeByTwo440-v2.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumThreeByTwo252-v2.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumThreeByTwo378-v2.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-threeByTwoLargeAt2X-v2.png',
'height': 2516,
'width': 3774,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-threeByTwoMediumAt2X-v2.png',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-threeByTwoSmallAt2X-v2.png',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-articleInline-v2.png',
'height': 266,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-hpSmall-v2.png',
'height': 229,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-blogSmallInline-v2.png',
'height': 212,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mediumFlexible177-v2.png',
'height': 248,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSmall-v2.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoHpMedium-v2.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine600-v2.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine540-v2.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine495-v2.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine390-v2.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine1050-v2.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine480-v2.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine310-v2.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine225-v2.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine96-v2.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine3000-v2.png',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine768-v2.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNine150-v2.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoSixteenByNineJumbo1600-v2.png',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-miniMoth-v2.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-windowsTile336H-v2.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoFifteenBySeven1305-v2.png',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-videoFifteenBySeven2610-v2.png',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-facebookJumbo-v2.png',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-watch308-v2.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-watch268-v2.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-verticalTwoByThree735-v2.png',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/07/books/07BOOKGESSEN1/07BOOKGESSEN1-mobileMasterAt3x-v2.png',
'height': 2466,
'width': 1759,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘Raising Raffi,’ a Father’s Lucid Book About a Chaotic Scene',
'kicker': None,
'content_kicker': None,
'print_headline': 'One Father’s Report From the Eye of a Storm',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Gessen, Keith',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'},
{'name': 'creative_works',
'value': 'Raising Raffi: The First Five Years (Book)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Gould, Emily', 'rank': 5, 'major': 'N'}],
'pub_date': '2022-06-06T16:57:42+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Books',
'byline': {'original': 'By Dwight Garner',
'person': [{'firstname': 'Dwight',
'middlename': None,
'lastname': 'Garner',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/a63cedc7-796b-56f8-b545-df12e04a2901',
'word_count': 1033,
'uri': 'nyt://article/a63cedc7-796b-56f8-b545-df12e04a2901'},
{'abstract': 'In a strange city, a new mother’s routine errand becomes absolutely everything.',
'web_url': 'https://www.nytimes.com/2023/09/09/style/get-the-baby-to-the-doctor.html',
'snippet': 'In a strange city, a new mother’s routine errand becomes absolutely everything.',
'lead_paragraph': 'I had a baby, a crumbling relationship and not one friend in the city we had moved to three weeks earlier, other than the partner I was losing. So naturally I fixated on an errand.',
'print_section': 'ST',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-superJumbo.jpg',
'height': 2048,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-horizontalMediumAt2X.jpg',
'height': 1424,
'width': 2135,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-threeByTwoLargeAt2X.jpg',
'height': 1414,
'width': 2122,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/10/fashion/09EPISODE-GOLDSTEIN-LOVE/09EPISODE-GOLDSTEIN-LOVE-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Get the Baby to the Doctor',
'kicker': 'episode',
'content_kicker': None,
'print_headline': 'It’s Just You and Me, Baby',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Washington (DC)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'}],
'pub_date': '2023-09-09T11:00:09+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Yael Goldstein-Love',
'person': [{'firstname': 'Yael',
'middlename': None,
'lastname': 'Goldstein-Love',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/95f600be-2a05-5a20-9014-afab2991a815',
'word_count': 1093,
'uri': 'nyt://article/95f600be-2a05-5a20-9014-afab2991a815'},
{'abstract': 'During the coronavirus outbreak, the best Father’s Day gifts should be personal and priceless, in every sense of the word.',
'web_url': 'https://www.nytimes.com/2020/06/13/at-home/fathers-day-gifts-coronavirus.html',
'snippet': 'During the coronavirus outbreak, the best Father’s Day gifts should be personal and priceless, in every sense of the word.',
'lead_paragraph': 'Celebrating Father’s Day is shaping up to be tricky. The country is reopening, but experts have said to remain cautious and limit indoor gatherings. And, with millions of Americans out of a job, this may not be the best time to splurge on a present. What to do instead? Below, some meaningful ways you can honor Dad this year.',
'print_section': 'D',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-articleLarge.jpg',
'height': 502,
'width': 600,
'legacy': {'xlarge': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 502},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-popup.jpg',
'height': 500,
'width': 599,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-blog480.jpg',
'height': 401,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-blog533.jpg',
'height': 446,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-blog427.jpg',
'height': 357,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-tmagSF.jpg',
'height': 303,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-tmagArticle.jpg',
'height': 495,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-slide.jpg',
'height': 500,
'width': 599,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-jumbo.jpg',
'height': 856,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-superJumbo.jpg',
'height': 1712,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-blog225.jpg',
'height': 188,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-master1050.jpg',
'height': 878,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-master675.jpg',
'height': 564,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-master495.jpg',
'height': 414,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-master180.jpg',
'height': 150,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-master315.jpg',
'height': 263,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-master768.jpg',
'height': 642,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-horizontalMediumAt2X.jpg',
'height': 2896,
'width': 4344,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-threeByTwoLargeAt2X.jpg',
'height': 2896,
'width': 4344,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-articleInline.jpg',
'height': 159,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-hpSmall.jpg',
'height': 136,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-blogSmallInline.jpg',
'height': 126,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mediumFlexible177.jpg',
'height': 148,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/06/14/multimedia/14AH-FATHERSDAY-COLOR/14AH-FATHERSDAY-COLOR-mobileMasterAt3x.jpg',
'height': 1505,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Get Creative to Celebrate Dad',
'kicker': None,
'content_kicker': None,
'print_headline': 'Honoring Dad This Year? Keep It Simple',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': "Father's Day",
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Gifts', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Men and Boys', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Quarantine (Life and Culture)',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Service',
'rank': 6,
'major': 'N'}],
'pub_date': '2020-06-13T14:00:10+0000',
'document_type': 'article',
'news_desk': 'AtHome',
'section_name': 'At Home',
'byline': {'original': 'By Sara Aridi',
'person': [{'firstname': 'Sara',
'middlename': None,
'lastname': 'Aridi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4b18e753-6a8c-50cd-bcf4-bf54cd88239e',
'word_count': 1072,
'uri': 'nyt://article/4b18e753-6a8c-50cd-bcf4-bf54cd88239e'},
{'abstract': 'Is it right to call the migrant detainment centers on our southern border “concentration camps,” as Representative Alexandria Ocasio-Cortez did recently? Her comments were meant to evoke the Holocaust, and to call forth our indignation at our government’s mistreatment of refugees. But historical parallels should be drawn carefully; what’s happening in Clint, Tex., is not equivalent to what took place in Sobibor, Treblinka or Auschwitz.',
'web_url': 'https://www.nytimes.com/2019/06/29/opinion/sunday/migrant-kids-concentration-camps.html',
'snippet': '',
'lead_paragraph': 'Is it right to call the migrant detainment centers on our southern border “concentration camps,” as Representative Alexandria Ocasio-Cortez did recently? Her comments were meant to evoke the Holocaust, and to call forth our indignation at our government’s mistreatment of refugees. But historical parallels should be drawn carefully; what’s happening in Clint, Tex., is not equivalent to what took place in Sobibor, Treblinka or Auschwitz.',
'print_section': 'SR',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-articleLarge.jpg',
'height': 747,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 747},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-popup.jpg',
'height': 500,
'width': 402,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-blog480.jpg',
'height': 597,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-blog533.jpg',
'height': 663,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-blog427.jpg',
'height': 531,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-tmagSF.jpg',
'height': 450,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-tmagArticle.jpg',
'height': 737,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-slide.jpg',
'height': 500,
'width': 402,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-jumbo.jpg',
'height': 1024,
'width': 823,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-superJumbo.jpg',
'height': 2048,
'width': 1646,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-blog225.jpg',
'height': 280,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-master1050.jpg',
'height': 1307,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-master675.jpg',
'height': 840,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-master495.jpg',
'height': 616,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-master180.jpg',
'height': 224,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-master315.jpg',
'height': 392,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-master768.jpg',
'height': 956,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-horizontalMediumAt2X-v2.jpg',
'height': 1400,
'width': 2100,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-threeByTwoLargeAt2X-v2.jpg',
'height': 784,
'width': 1176,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-threeByTwoMediumAt2X-v2.jpg',
'height': 784,
'width': 1176,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-articleInline.jpg',
'height': 236,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-hpSmall.jpg',
'height': 203,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-blogSmallInline.jpg',
'height': 188,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/1d17fdce4a2a4a4fadb8b1c0266b9603-mediumFlexible177.jpg',
'height': 220,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoSixteenByNineJumbo1600-v2.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/30/opinion/sunday/30ORRINGER/30ORRINGER-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Why Detention Centers Remind Us of One of the Worst Periods in History',
'kicker': None,
'content_kicker': None,
'print_headline': 'Clint, Tex., And Vichy France',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Immigration Detention',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Clint (Tex)', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Refugees and Displaced Persons',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Mukherjee, Elora', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Holocaust and the Nazi Era',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Concentration Camps',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'Fry, Varian', 'rank': 7, 'major': 'N'}],
'pub_date': '2019-06-29T19:00:33+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By Julie Orringer',
'person': [{'firstname': 'Julie',
'middlename': None,
'lastname': 'Orringer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/7fd15ecd-6d35-5761-a11f-25281c82fb44',
'word_count': 999,
'uri': 'nyt://article/7fd15ecd-6d35-5761-a11f-25281c82fb44'},
{'abstract': 'Tales of gender blasphemy from deep within the land of princes and princesses.',
'web_url': 'https://www.nytimes.com/2019/01/16/opinion/brazil-gender-alves.html',
'snippet': 'Tales of gender blasphemy from deep within the land of princes and princesses.',
'lead_paragraph': 'SÃO PAULO, Brazil — “It’s a new era in Brazil: Boys wear blue and girls wear pink,” our new minister of women, family and human rights, Damares Alves, said this month in a video. And she didn’t stop there: Under the new government of President Jair Bolsonaro, she declared in her inaugural speech, “a girl will be a princess and a boy will be a prince.”',
'print_section': 'A',
'print_page': '21',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/01/16/opinion/16barbara/16barbara-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-horizontalMediumAt2X.jpg',
'height': 3648,
'width': 5472,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-threeByTwoLargeAt2X.jpg',
'height': 3648,
'width': 5472,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/merlin_142698936_60de0a5d-83d5-48ca-b83a-2c97b0d61bcc-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/16/opinion/16barbara/16barbara-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'I Put My Baby Daughter in Dinosaur Overalls. Am I an Anarchist?',
'kicker': None,
'content_kicker': None,
'print_headline': 'Brazil Sees Only Pink and Blue',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Women and Girls',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Brazil', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Discrimination', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': "Women's Rights", 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Bolsonaro, Jair (1955- )',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Gender', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 8, 'major': 'N'}],
'pub_date': '2019-01-16T11:00:04+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Vanessa Barbara',
'person': [{'firstname': 'Vanessa',
'middlename': None,
'lastname': 'Barbara',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/d9185795-08fd-52cb-b053-aa3c8570f713',
'word_count': 1102,
'uri': 'nyt://article/d9185795-08fd-52cb-b053-aa3c8570f713'}],
[{'abstract': 'Make our country great, by making it a bit more like the rest of the world.',
'web_url': 'https://www.nytimes.com/2016/10/14/opinion/the-perpetual-panic-of-american-parenthood.html',
'snippet': 'Make our country great, by making it a bit more like the rest of the world.',
'lead_paragraph': 'Paris — I spend a lot of time listening to parents around the world complain. In Kiev recently, a working mother told me the joke about how Ukrainians are raised by same-sex couples: their mothers and grandmothers.',
'print_section': 'A',
'print_page': '21',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-articleInline.jpg',
'height': 125,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-hpSmall.jpg',
'height': 107,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-blogSmallInline.jpg',
'height': 99,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-mediumFlexible177.jpg',
'height': 116,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-thumbStandard-v6.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-thumbStandard-v6.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-thumbLarge-v6.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-smallSquare252-v6.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-blogSmallThumb-v6.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-smallSquare168-v6.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-hpLarge-v4.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-largeWidescreen573-v4.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-largeWidescreen1050-v4.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-watch268-v3.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-square320-v3.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-filmstrip-v3.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-square640-v3.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-moth-v3.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-mediumSquare149-v3.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-articleLarge.jpg',
'height': 394,
'width': 600,
'legacy': {'xlarge': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 394},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-blog480.jpg',
'height': 315,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-blog427.jpg',
'height': 280,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-tmagArticle.jpg',
'height': 389,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-jumbo.jpg',
'height': 673,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-blog225.jpg',
'height': 148,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-master675.jpg',
'height': 443,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-master180.jpg',
'height': 118,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-master768.jpg',
'height': 504,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-popup.jpg',
'height': 427,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-blog533.jpg',
'height': 350,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-tmagSF.jpg',
'height': 238,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-slide.jpg',
'height': 394,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-superJumbo.jpg',
'height': 1345,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-master1050.jpg',
'height': 690,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-master495.jpg',
'height': 325,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-master315.jpg',
'height': 207,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-sfSpan-v3.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-largeHorizontalJumbo-v3.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/14/opinion/14Druckerman-INYT/14Druckerman-INYT-largeHorizontal375-v3.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'}],
'headline': {'main': 'The Perpetual Panic of American Parenthood',
'kicker': 'Contributing Op-Ed Writer',
'content_kicker': None,
'print_headline': 'The Panic of American Parenthood',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Work-Life Balance', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Clinton, Hillary Rodham',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2016',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Family Leaves', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Child Care', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'Anxiety and Stress',
'rank': 9,
'major': 'N'},
{'name': 'subject',
'value': 'Education (Pre-School)',
'rank': 10,
'major': 'N'},
{'name': 'subject', 'value': 'Paid Time Off', 'rank': 11, 'major': 'N'},
{'name': 'glocations', 'value': 'Finland', 'rank': 12, 'major': 'N'},
{'name': 'glocations', 'value': 'France', 'rank': 13, 'major': 'N'},
{'name': 'glocations', 'value': 'Ukraine', 'rank': 14, 'major': 'N'}],
'pub_date': '2016-10-13T14:20:02+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Pamela Druckerman',
'person': [{'firstname': 'Pamela',
'middlename': None,
'lastname': 'Druckerman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/b00f7f92-1ba0-5aa6-bebc-898af984270a',
'word_count': 998,
'uri': 'nyt://article/b00f7f92-1ba0-5aa6-bebc-898af984270a'},
{'abstract': 'The police recently found a match for the fingerprints of a woman whose body was found in upstate New York. Then state troopers visited a man, now 65, who said he saw her leave with two “goons” one summer day.',
'web_url': 'https://www.nytimes.com/2016/11/27/nyregion/i-remember-her-questions-persist-after-break-in-70-killing-of-harlem-woman.html',
'snippet': 'The police recently found a match for the fingerprints of a woman whose body was found in upstate New York. Then state troopers visited a man, now 65, who said he saw her leave with two “goons” one summer day.',
'lead_paragraph': 'A rabbit hunter found the body. But he went home to Queens and waited a day before calling the police because he feared trouble — it was not rabbit season.',
'print_section': 'A',
'print_page': '17',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/28/nyregion/28CRIMESCENE1/28CRIMESCENE2-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘I Remember Her’: Questions Persist After Break in ’70 Killing of Harlem Woman',
'kicker': 'Crime Scene',
'content_kicker': None,
'print_headline': '‘I Remember Her’: Questions Persist After Break in ’70 Murder',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Murders, Attempted Murders and Homicides',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Harlem (Manhattan, NY)',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Forensic Science', 'rank': 5, 'major': 'N'}],
'pub_date': '2016-11-28T02:26:52+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Michael Wilson',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Wilson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2e48ae1f-be02-596f-9ad7-10fca9750d82',
'word_count': 1077,
'uri': 'nyt://article/2e48ae1f-be02-596f-9ad7-10fca9750d82'},
{'abstract': 'Mr. Ingels held jobs as a talking peanut, an agent and the voice of Pac-Man.',
'web_url': 'https://www.nytimes.com/2015/10/23/arts/television/marty-ingels-actor-and-comedian-is-dead-at-79.html',
'snippet': 'Mr. Ingels held jobs as a talking peanut, an agent and the voice of Pac-Man.',
'lead_paragraph': 'Marty Ingels, an actor and comic whose off-screen antics were long deemed outrageous even by Hollywood’s lofty standards, died on Wednesday in Tarzana, Calif. He was 79.',
'print_section': 'A',
'print_page': '24',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-articleLarge.jpg',
'height': 770,
'width': 600,
'legacy': {'xlarge': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 770},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-blog480.jpg',
'height': 616,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-blog427.jpg',
'height': 548,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-tmagArticle.jpg',
'height': 760,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-jumbo.jpg',
'height': 1024,
'width': 798,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-blog225.jpg',
'height': 289,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-master675.jpg',
'height': 866,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-master180.jpg',
'height': 231,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-master768.jpg',
'height': 986,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-popup.jpg',
'height': 500,
'width': 390,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-blog533.jpg',
'height': 684,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-tmagSF.jpg',
'height': 465,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-slide.jpg',
'height': 500,
'width': 390,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-superJumbo.jpg',
'height': 2048,
'width': 1596,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-master1050.jpg',
'height': 1348,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-master495.jpg',
'height': 635,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-master315.jpg',
'height': 404,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-articleInline.jpg',
'height': 244,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-hpSmall.jpg',
'height': 209,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-blogSmallInline.jpg',
'height': 194,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-mediumFlexible177.jpg',
'height': 227,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/10/23/arts/23Ingels-Obit2/23Ingels-Obit2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Marty Ingels, Actor Funny Onscreen and Outrageous Off, Dies at 79',
'kicker': None,
'content_kicker': None,
'print_headline': 'Marty Ingels, Actor and Comedian, Is Dead at 79',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Deaths (Obituaries)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Fox, Margalit', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Actors and Actresses',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Television', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Ingels, Marty (1936-2015)',
'rank': 5,
'major': 'N'}],
'pub_date': '2015-10-23T00:25:36+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Television',
'byline': {'original': 'By Margalit Fox',
'person': [{'firstname': 'Margalit',
'middlename': None,
'lastname': 'Fox',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Obituary (Obit)',
'_id': 'nyt://article/8e392ac3-7aab-5500-9c60-ba7dec35be02',
'word_count': 1050,
'uri': 'nyt://article/8e392ac3-7aab-5500-9c60-ba7dec35be02'},
{'abstract': 'Do we really need an app that lets us brew our coffee from anywhere?',
'web_url': 'https://www.nytimes.com/2016/07/10/opinion/sunday/solving-all-the-wrong-problems.html',
'snippet': 'Do we really need an app that lets us brew our coffee from anywhere?',
'lead_paragraph': 'Every day, innovative companies promise to make the world a better place. Are they succeeding?',
'print_section': 'SR',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-articleLarge-v3.png',
'height': 300,
'width': 600,
'legacy': {'xlarge': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-articleLarge-v3.png',
'xlargewidth': 600,
'xlargeheight': 300},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-popup-v3.png',
'height': 325,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-blog480-v3.png',
'height': 240,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-blog533-v3.png',
'height': 267,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-blog427-v3.png',
'height': 214,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-tmagSF-v3.png',
'height': 181,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-tmagArticle-v3.png',
'height': 296,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-slide-v3.png',
'height': 300,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-jumbo-v3.png',
'height': 512,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-superJumbo-v3.png',
'height': 1000,
'width': 2000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-blog225-v3.png',
'height': 113,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-master1050-v2.png',
'height': 525,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-master675-v3.png',
'height': 338,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-master495-v3.png',
'height': 248,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-master180-v3.png',
'height': 90,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-master315-v2.png',
'height': 158,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-master768-v2.png',
'height': 384,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-thumbStandard-v3.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-thumbStandard-v3.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-blogSmallThumb-v3.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-thumbLarge-v3.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-smallSquare168-v3.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-smallSquare252-v2.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-square320-v3.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-moth-v3.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-filmstrip-v3.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-square640-v3.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-mediumSquare149-v2.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-sfSpan-v3.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-largeHorizontal375-v3.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-largeHorizontalJumbo-v2.png',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-horizontalMediumAt2X-v2.png',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-hpLarge-v3.png',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-largeWidescreen573-v3.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-largeWidescreen1050-v2.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-thumbWide-v3.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-thumbWide-v3.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoThumb-v3.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoLarge-v3.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-mediumThreeByTwo210-v3.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-mediumThreeByTwo225-v3.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-mediumThreeByTwo440-v2.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-mediumThreeByTwo252-v2.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-mediumThreeByTwo378-v2.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-threeByTwoLargeAt2X-v2.png',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-threeByTwoMediumAt2X-v2.png',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-threeByTwoSmallAt2X-v2.png',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-articleInline-v3.png',
'height': 95,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-hpSmall-v3.png',
'height': 82,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-blogSmallInline-v3.png',
'height': 76,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-mediumFlexible177-v3.png',
'height': 89,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSmall-v3.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoHpMedium-v3.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine600-v3.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine540-v3.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine495-v3.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine390-v3.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine1050-v2.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine480-v2.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine310-v2.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine225-v2.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine96-v2.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine768-v2.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNine150-v2.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoSixteenByNineJumbo1600-v2.png',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-miniMoth-v3.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-windowsTile336H-v3.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-videoFifteenBySeven1305-v2.png',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-facebookJumbo-v2.png',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-watch308-v2.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/10/04/opinion/Arieff_contributor/Arieff_contributor-watch268-v2.png',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'}],
'headline': {'main': 'Solving All the Wrong Problems',
'kicker': 'Contributing Op-Ed Writer',
'content_kicker': None,
'print_headline': 'Solving All the Wrong Problems',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Silicon Valley (Calif)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Arieff, Allison', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Inventions and Patents',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Innovation', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Social Media', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Design', 'rank': 7, 'major': 'N'},
{'name': 'creative_works',
'value': 'Design: The Invention of Desire (Book)',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Helfand, Jessica', 'rank': 9, 'major': 'N'}],
'pub_date': '2016-07-09T18:30:06+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By Allison Arieff',
'person': [{'firstname': 'Allison',
'middlename': None,
'lastname': 'Arieff',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/7495312e-5a4d-5f47-8282-40348c2d3873',
'word_count': 1124,
'uri': 'nyt://article/7495312e-5a4d-5f47-8282-40348c2d3873'},
{'abstract': 'My brilliant mom was diagnosed with dementia when my son was a baby. For a time, their interests and abilities matched exactly.',
'web_url': 'https://www.nytimes.com/2020/04/17/parenting/sandwich-generation-caregiving.html',
'snippet': 'My brilliant mom was diagnosed with dementia when my son was a baby. For a time, their interests and abilities matched exactly.',
'lead_paragraph': 'This story was originally published on Jan. 14, 2020 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-articleLarge.jpg',
'height': 661,
'width': 600,
'legacy': {'xlarge': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 661},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-popup.jpg',
'height': 500,
'width': 455,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-blog480.jpg',
'height': 528,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-blog533.jpg',
'height': 587,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-blog427.jpg',
'height': 470,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-tmagSF.jpg',
'height': 399,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-tmagArticle.jpg',
'height': 652,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-slide.jpg',
'height': 500,
'width': 455,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-jumbo.jpg',
'height': 1024,
'width': 931,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-superJumbo.jpg',
'height': 1984,
'width': 1802,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-blog225.jpg',
'height': 248,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-master1050.jpg',
'height': 1156,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-master675.jpg',
'height': 743,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-master495.jpg',
'height': 545,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-master180.jpg',
'height': 198,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-master315.jpg',
'height': 347,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-master768.jpg',
'height': 846,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-horizontalMediumAt2X.jpg',
'height': 1201,
'width': 1802,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-threeByTwoLargeAt2X.jpg',
'height': 1201,
'width': 1802,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-articleInline.jpg',
'height': 209,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-hpSmall.jpg',
'height': 179,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-blogSmallInline.jpg',
'height': 166,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mediumFlexible177.jpg',
'height': 195,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/multimedia/parenting-lizzie/parenting-lizzie-mobileMasterAt3x.jpg',
'height': 1982,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Watching My Son Grow, and My Mom Return to Childhood',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': "Alzheimer's Disease",
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Memory', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Dementia', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Frontotemporal Dementia',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 7,
'major': 'N'}],
'pub_date': '2020-04-17T14:52:55+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Lizzie Skurnick',
'person': [{'firstname': 'Lizzie',
'middlename': None,
'lastname': 'Skurnick',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6e8fdcb7-c0dc-5ec7-8ad3-68d9ef22e7eb',
'word_count': 1086,
'uri': 'nyt://article/6e8fdcb7-c0dc-5ec7-8ad3-68d9ef22e7eb'},
{'abstract': 'Charlotte and Eric Kaufman became the focus of a debate over parenting after they took their daughters — ages 1 and 3 — on a trip across the South Pacific that ended with a Navy rescue.',
'web_url': 'https://www.nytimes.com/2014/04/08/us/2-tots-a-sailboat-and-a-storm-over-parenting.html',
'snippet': 'Charlotte and Eric Kaufman became the focus of a debate over parenting after they took their daughters — ages 1 and 3 — on a trip across the South Pacific that ended with a Navy rescue.',
'lead_paragraph': 'LOS ANGELES — As her family began what was supposed to be a monthslong journey in a 36-foot sailboat from Mexico to New Zealand, Charlotte Kaufman wrote openly of her misgivings about taking her two daughters — ages 1 and 3 — to sail the South Pacific, with her husband as captain and herself as the crew.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-superJumbo.jpg',
'height': 1331,
'width': 1998,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-hpLarge-v2.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-largeWidescreen573-v2.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/08/us/SAILBOAT/SAILBOAT-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': '2 Tots, a Sailboat and a Storm Over Parenting',
'kicker': None,
'content_kicker': None,
'print_headline': '2 Tots, a Sailboat and a Storm Over Parenting',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sailboats and Sailing',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Maritime Accidents and Safety',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Rescues', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'United States Navy',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'United States Coast Guard',
'rank': 7,
'major': 'N'},
{'name': 'glocations', 'value': 'Pacific Ocean', 'rank': 8, 'major': 'N'},
{'name': 'persons',
'value': 'Kaufman, Charlotte',
'rank': 9,
'major': 'N'},
{'name': 'persons', 'value': 'Kaufman, Eric', 'rank': 10, 'major': 'N'},
{'name': 'persons', 'value': 'Kaufman, Eric', 'rank': 11, 'major': 'N'},
{'name': 'persons',
'value': 'Kaufman, Charlotte',
'rank': 12,
'major': 'N'}],
'pub_date': '2014-04-08T01:38:18+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Jennifer Medina',
'person': [{'firstname': 'Jennifer',
'middlename': None,
'lastname': 'Medina',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/61feb371-0242-5fcf-afd5-b758450eabdc',
'word_count': 1093,
'uri': 'nyt://article/61feb371-0242-5fcf-afd5-b758450eabdc'},
{'abstract': 'A reluctant mother finds that having a baby doesn’t slow her momentum as a filmmaker.',
'web_url': 'https://www.nytimes.com/2014/01/05/fashion/weddings/theres-room-for-one-more-aboard-the-rv.html',
'snippet': 'A reluctant mother finds that having a baby doesn’t slow her momentum as a filmmaker.',
'lead_paragraph': 'Promises, promises. While color palettes and canapés are deliberations made months before a wedding, a couple’s vows can sometimes sound like a tired recitation of have, hold, sickness and health. ',
'print_section': 'ST',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/01/05/fashion/weddings/05UNIONS/05UNIONS-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'There’s Room for One More Aboard the R.V.',
'kicker': 'State Of the Unions',
'content_kicker': None,
'print_headline': 'There’s Room for One More Aboard the R.V.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Rafkin, Louise',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Weddings and Engagements',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Marriages', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Vows (Times Column)',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-01-02T21:34:35+0000',
'document_type': 'article',
'news_desk': 'Society',
'section_name': 'Fashion & Style',
'subsection_name': 'Weddings',
'byline': {'original': 'By Louise Rafkin',
'person': [{'firstname': 'Louise',
'middlename': None,
'lastname': 'Rafkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4a46abf8-7ff8-5822-aead-3f681b2c4182',
'word_count': 1048,
'uri': 'nyt://article/4a46abf8-7ff8-5822-aead-3f681b2c4182'},
{'abstract': 'You won’t have to change diapers, calm fussiness or warm bottles: For nine months I’d like to borrow your womb.',
'web_url': 'https://www.nytimes.com/2017/07/14/well/family/love-letter-to-my-future-surrogate.html',
'snippet': 'You won’t have to change diapers, calm fussiness or warm bottles: For nine months I’d like to borrow your womb.',
'lead_paragraph': 'You, hello, waiting at Penn Station, are you my surrogate? You, walking past the diner in a small Texas town, is it you?',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/07/14/science/well-family-surro/well-family-surro-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-articleInline.jpg',
'height': 166,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-hpSmall.jpg',
'height': 142,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-blogSmallInline.jpg',
'height': 132,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-mediumFlexible177.jpg',
'height': 155,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-articleLarge.jpg',
'height': 525,
'width': 600,
'legacy': {'xlarge': 'images/2017/07/14/science/well-family-surro/well-family-surro-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 525},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-blog480.jpg',
'height': 420,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-blog427.jpg',
'height': 373,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-tmagArticle.jpg',
'height': 518,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-jumbo.jpg',
'height': 895,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-blog225.jpg',
'height': 197,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-master675.jpg',
'height': 590,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-master180.jpg',
'height': 157,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-master768.jpg',
'height': 671,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-popup.jpg',
'height': 500,
'width': 572,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-blog533.jpg',
'height': 466,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-tmagSF.jpg',
'height': 316,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-slide.jpg',
'height': 500,
'width': 572,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-superJumbo.jpg',
'height': 1790,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-master1050.jpg',
'height': 918,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-master495.jpg',
'height': 433,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-master315.jpg',
'height': 275,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/07/14/science/well-family-surro/well-family-surro-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/07/14/science/well-family-surro/well-family-surro-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'}],
'headline': {'main': 'Love Letter to My Future Surrogate',
'kicker': 'Ties',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Surrogate Motherhood',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Infertility', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 3,
'major': 'N'}],
'pub_date': '2017-07-14T10:00:04+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'subsection_name': 'Family',
'byline': {'original': 'By Kelli Auerbach',
'person': [{'firstname': 'Kelli',
'middlename': None,
'lastname': 'Auerbach',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8e0a68a6-6185-5453-957e-c37c6d963665',
'word_count': 1004,
'uri': 'nyt://article/8e0a68a6-6185-5453-957e-c37c6d963665'},
{'abstract': 'Smell and taste disorders can affect more than the ability to “smell the roses” in life and to enjoy food.',
'web_url': 'https://www.nytimes.com/2011/04/19/health/19brody.html',
'snippet': 'Smell and taste disorders can affect more than the ability to “smell the roses” in life and to enjoy food.',
'lead_paragraph': 'Dr. Ronald DeVere, a neurologist in Austin, Tex., was baffled. In 1995, after recovering from a viral infection, something happened to his sense of smell. Fresh milk smelled sour, the dirty dog pen smelled good, and other odors couldn’t be detected at all.',
'print_section': 'D',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/19/science/BROD/BROD-jumbo.jpg',
'height': 1024,
'width': 660,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/19/science/BROD/BROD-popup.jpg',
'height': 500,
'width': 322,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/19/science/BROD/BROD-articleInline.jpg',
'height': 295,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/19/science/BROD/BROD-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/04/19/science/BROD/BROD-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'The Nose May Not Know What It’s Missing',
'kicker': 'Personal Health',
'content_kicker': None,
'print_headline': 'The Nose May Not Know What It’s Missing',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Medicine and Health',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Cooking and Cookbooks',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Taste', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Smell (Olfaction)',
'rank': 5,
'major': 'N'}],
'pub_date': '2011-04-18T18:41:50+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Jane E. Brody',
'person': [{'firstname': 'Jane',
'middlename': 'E.',
'lastname': 'Brody',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/49b6b160-72e4-5ce4-bedf-97b2e8ec4a27',
'word_count': 1098,
'uri': 'nyt://article/49b6b160-72e4-5ce4-bedf-97b2e8ec4a27'},
{'abstract': 'The event cost $8 million to stage and was almost a year in the making, a reflection of America’s extravagant process of choosing a president.',
'web_url': 'https://www.nytimes.com/2016/10/21/world/americas/las-vegas-known-presidential-debate.html',
'snippet': 'The event cost $8 million to stage and was almost a year in the making, a reflection of America’s extravagant process of choosing a president.',
'lead_paragraph': 'LAS VEGAS — Outside the Four Queens casino in downtown Las Vegas, just past Elvis and a pregnant burlesque dancer, stood “Baby Donald” — a rotund man in a rubber Donald J. Trump mask, wearing a diaper and clutching a giant baby bottle. “Make my diaper great again,” his T-shirt read.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2016/10/21/world/21abroad1/21abroad1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-tmagSF.jpg',
'height': 242,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-master1050.jpg',
'height': 701,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/10/21/world/21abroad1/21abroad1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/10/21/world/21abroad1/21abroad1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/world/21abroad1/21abroad1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'}],
'headline': {'main': 'Las Vegas, Known for Excess, Was Perfect Backdrop for Presidential Debate',
'kicker': 'Abroad in America',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Presidential Election of 2016',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'University of Nevada, Las Vegas',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Las Vegas (Nev)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Debates (Political)',
'rank': 4,
'major': 'N'}],
'pub_date': '2016-10-21T01:36:02+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By Declan Walsh',
'person': [{'firstname': 'Declan',
'middlename': None,
'lastname': 'Walsh',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5186d5d5-c6a2-5f5d-a815-748deeef5a46',
'word_count': 1087,
'uri': 'nyt://article/5186d5d5-c6a2-5f5d-a815-748deeef5a46'}],
[{'abstract': 'If they are not, then what institutional, social and historical obstacles are to blame for reinforcing unequal roles and expectations?',
'web_url': 'https://parenting.blogs.nytimes.com/2011/06/20/are-moms-and-dads-interchangeable/',
'snippet': 'If they are not, then what institutional, social and historical obstacles are to blame for reinforcing unequal roles and expectations?',
'lead_paragraph': 'The ongoing discussion about “Torn: True Stories of Kids, Career & the Conflict of Modern Motherhood” and the announcement of the creation of the Fathers Forum both led readers to ask versions of the same question in the comments: Can we assume mothers to be different from fathers? If they are not, then what institutional, social and historical obstacles are to blame for reinforcing unequal roles and expectations? And if they are, then how? And what do those differences mean institutionally, socially and historically?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Are Moms and Dads Interchangeable?',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Families and Family Life',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'}],
'pub_date': '2011-06-20T21:39:41+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d66f2d3c-ae3f-5206-82fc-ff0b2e72b5ef',
'word_count': 1136,
'uri': 'nyt://article/d66f2d3c-ae3f-5206-82fc-ff0b2e72b5ef'},
{'abstract': 'Being in day care as an infant increased a child’s risk of having stomach bugs in the first year of life, but it also had a protective effect after that.',
'web_url': 'https://well.blogs.nytimes.com/2016/05/31/day-care-infections-may-mean-fewer-sick-days-later/',
'snippet': 'Being in day care as an infant increased a child’s risk of having stomach bugs in the first year of life, but it also had a protective effect after that.',
'lead_paragraph': 'All three of my children started out in day care as infants, and the day care center was, in so many ways, at the center of our lives for years. The teachers taught us most of what we knew about young children (including, I am sorry to say, the difference between well-meaning parents and truly talented professionals). The day care cohort provided my children with their close friends (who keep turning up in their high school and college classes). We even bought our house so we could live near the day care center.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/05/23/health/well_childcare/well_childcare-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-articleLarge.jpg',
'height': 450,
'width': 600,
'legacy': {'xlarge': 'images/2016/05/23/health/well_childcare/well_childcare-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 450},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-blog427.jpg',
'height': 320,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-tmagArticle.jpg',
'height': 444,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-jumbo.jpg',
'height': 768,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-blog225.jpg',
'height': 169,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-master675.jpg',
'height': 506,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-master180.jpg',
'height': 135,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-master768.jpg',
'height': 576,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-popup.jpg',
'height': 488,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-blog533.jpg',
'height': 400,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-tmagSF.jpg',
'height': 272,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-slide.jpg',
'height': 450,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-superJumbo.jpg',
'height': 1536,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-master1050.jpg',
'height': 788,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-master495.jpg',
'height': 371,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-master315.jpg',
'height': 236,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-articleInline.jpg',
'height': 143,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-hpSmall.jpg',
'height': 122,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-blogSmallInline.jpg',
'height': 113,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/05/23/health/well_childcare/well_childcare-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/23/health/well_childcare/well_childcare-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Day Care Infections May Mean Fewer Sick Days Later',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Antibiotics',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Day Care Centers', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Diarrhea', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Immune System', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Infections', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Vaccination and Immunization',
'rank': 7,
'major': 'N'}],
'pub_date': '2016-05-31T10:45:30+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Perri Klass, M.D',
'person': [{'firstname': 'Perri',
'middlename': None,
'lastname': 'Klass',
'qualifier': 'M.D',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/67db4a2d-1198-5f0e-b6e5-d2818ed78a10',
'word_count': 1084,
'uri': 'nyt://article/67db4a2d-1198-5f0e-b6e5-d2818ed78a10'},
{'abstract': 'After a woman is accused of killing her friend, an angry exchange on Facebook between the two offers a window on the case.',
'web_url': 'https://www.nytimes.com/2011/03/02/nyregion/02slay.html',
'snippet': 'After a woman is accused of killing her friend, an angry exchange on Facebook between the two offers a window on the case.',
'lead_paragraph': 'The dispute between the two friends began over $20, money that had been given to buy baby formula and diapers, but that went for some other purpose. Days later, it became a heated public matter, splayed on the two young women’s Facebook pages.',
'print_section': 'A',
'print_page': '18',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/02/nyregion/SLAY1/SLAY1-articleLarge.jpg',
'height': 350,
'width': 600,
'legacy': {'xlarge': 'images/2011/03/02/nyregion/SLAY1/SLAY1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 350},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/02/nyregion/SLAY1/SLAY1-jumbo.jpg',
'height': 668,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/02/nyregion/SLAY1/SLAY1-popup.jpg',
'height': 424,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/02/nyregion/SLAY1/SLAY1-articleInline.jpg',
'height': 124,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/02/nyregion/SLAY1/SLAY1-sfSpan.jpg',
'height': 258,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/02/nyregion/SLAY1/SLAY1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/03/02/nyregion/SLAY1/SLAY1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'A $20 Loan, a Facebook Quarrel and a Fatal Stabbing',
'kicker': None,
'content_kicker': None,
'print_headline': 'A $20 Loan, a Facebook Quarrel and a Fatal Stabbing',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Facebook.com',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Murders and Attempted Murders',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'EAST NEW YORK (NYC)',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-03-02T03:08:05+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Al Baker and Tim Stelloh',
'person': [{'firstname': 'Al',
'middlename': None,
'lastname': 'Baker',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Tim',
'middlename': None,
'lastname': 'Stelloh',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a37f70c6-53f7-57a0-96aa-d8fc36cf6821',
'word_count': 1044,
'uri': 'nyt://article/a37f70c6-53f7-57a0-96aa-d8fc36cf6821'},
{'abstract': 'Here’s how to connect with verified aid groups working in the areas affected by the storm.',
'web_url': 'https://www.nytimes.com/2024/10/10/weather/hurricane-milton-victims-aid.html',
'snippet': 'Here’s how to connect with verified aid groups working in the areas affected by the storm.',
'lead_paragraph': 'Hurricane Milton carved a path of destruction across Florida, leaving at least five people dead and millions without power, and damaging homes, cars and infrastructure.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-horizontalMediumAt2X.jpg',
'height': 5504,
'width': 8256,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-threeByTwoLargeAt2X.jpg',
'height': 5504,
'width': 8256,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/11/10/multimedia/10hurricane-milton-how-to-help-lvqb/10hurricane-milton-how-to-help-lvqb-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'How to Help Victims of Hurricane Milton',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Florida',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Tampa (Fla)', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'AMERICAN RED CROSS',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': 'AmeriCares', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Best Friends Animal Society',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Catholic Charities',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Charity Navigator',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Federal Emergency Management Agency',
'rank': 8,
'major': 'N'},
{'name': 'organizations',
'value': 'Salvation Army',
'rank': 9,
'major': 'N'},
{'name': 'organizations',
'value': 'Save the Children',
'rank': 10,
'major': 'N'},
{'name': 'subject', 'value': 'Humanitarian Aid', 'rank': 11, 'major': 'N'},
{'name': 'subject',
'value': 'Hurricane Milton (2024)',
'rank': 12,
'major': 'N'},
{'name': 'subject',
'value': 'Hurricanes and Tropical Storms',
'rank': 13,
'major': 'N'}],
'pub_date': '2024-10-10T19:50:56+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'Weather',
'byline': {'original': 'By Jesus Jiménez',
'person': [{'firstname': 'Jesus',
'middlename': None,
'lastname': 'Jiménez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/39682e60-2f43-57da-aa6a-a21e6b6f2dd2',
'word_count': 431,
'uri': 'nyt://article/39682e60-2f43-57da-aa6a-a21e6b6f2dd2'},
{'abstract': 'He was the winner of a competition that promotes the adoption of dogs, even ones with perpetually protruding tongues and missing fur.',
'web_url': 'https://www.nytimes.com/2022/06/25/us/worlds-ugliest-dog-mr-happy-face.html',
'snippet': 'He was the winner of a competition that promotes the adoption of dogs, even ones with perpetually protruding tongues and missing fur.',
'lead_paragraph': 'Out of a field that included a “hairless mutant” with no teeth and a crooked face, a creature that resembled “a hyena or mandrill baboon,” and a canine with a “gorilla-looking head,” a Chihuahua mix named Mr. Happy Face emerged on Friday as the foulest of them all, winner of the 2022 World’s Ugliest Dog contest.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumSquareAt3X.jpg',
'height': 1588,
'width': 1588,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-horizontalMediumAt2X.jpg',
'height': 3037,
'width': 4554,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-threeByTwoLargeAt2X.jpg',
'height': 1611,
'width': 2416,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/06/25/us/25xp-ugliestdog1/25xp-ugliestdog1-mobileMasterAt3x.jpg',
'height': 1201,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Mr. Happy Face, a Chihuahua Mix With a Mohawk, Crowned World’s Ugliest Dog',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Dogs', 'rank': 1, 'major': 'N'},
{'name': 'subject',
'value': 'Contests and Prizes',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Sonoma County (Calif)',
'rank': 3,
'major': 'N'}],
'pub_date': '2022-06-25T22:22:45+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Alex Traub',
'person': [{'firstname': 'Alex',
'middlename': None,
'lastname': 'Traub',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/446dc290-2fda-55cf-8840-3a42d0498a7c',
'word_count': 459,
'uri': 'nyt://article/446dc290-2fda-55cf-8840-3a42d0498a7c'},
{'abstract': 'In late January, I visited a ramshackle shed that had suddenly appeared in Gowanus.',
'web_url': 'https://www.nytimes.com/interactive/2021/02/12/nyregion/sharing-corner-gowanus.html',
'snippet': 'In late January, I visited a ramshackle shed that had suddenly appeared in Gowanus.',
'lead_paragraph': 'In late January, I visited a ramshackle shed that had suddenly appeared in Gowanus.',
'print_section': 'MB',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumSquareAt3X.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-horizontalMediumAt2X.jpg',
'height': 2183,
'width': 3272,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-threeByTwoLargeAt2X.jpg',
'height': 2183,
'width': 3272,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/02/09/nyregion/00gowanusburst21/00gowanusburst21-mobileMasterAt3x.jpg',
'height': 1201,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'The Rise of the Sharing Shed',
'kicker': None,
'content_kicker': None,
'print_headline': 'A Collection of Items Worthy of a Top-Shelf Idea',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Manhattan (NYC)',
'rank': 1,
'major': 'N'}],
'pub_date': '2021-02-12T10:00:02+0000',
'document_type': 'multimedia',
'news_desk': 'New York',
'section_name': 'New York',
'byline': {'original': 'By Andrea Strong',
'person': [{'firstname': 'Andrea',
'middlename': None,
'lastname': 'Strong',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/e4ed7c43-1c83-51b0-af68-26818d76d41e',
'word_count': 0,
'uri': 'nyt://interactive/e4ed7c43-1c83-51b0-af68-26818d76d41e'},
{'abstract': 'Barred from staging large in-person protests at this week’s Group of 7 summit because of pandemic restrictions, activists revived an attention-drawing move.',
'web_url': 'https://www.nytimes.com/2021/06/11/world/europe/biden-balloon-g7-trump-johnson.html',
'snippet': 'Barred from staging large in-person protests at this week’s Group of 7 summit because of pandemic restrictions, activists revived an attention-drawing move.',
'lead_paragraph': 'FALMOUTH, England — It’s no diaper-clad Donald J. Trump, but this year’s Group of 7 meeting has its own inflatable gag: a floating blimp that caricatures President Biden and Prime Minister Boris Johnson of Britain, holding hands and waving, each wearing swim trunks in the design of their national flags.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-articleLarge.jpg',
'height': 414,
'width': 600,
'legacy': {'xlarge': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 414},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-popup.jpg',
'height': 448,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-blog480.jpg',
'height': 331,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-blog533.jpg',
'height': 367,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-blog427.jpg',
'height': 294,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-tmagSF.jpg',
'height': 250,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-tmagArticle.jpg',
'height': 408,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-slide.jpg',
'height': 414,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-jumbo.jpg',
'height': 706,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-superJumbo.jpg',
'height': 1412,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-blog225.jpg',
'height': 155,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-master1050.jpg',
'height': 724,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-master675.jpg',
'height': 465,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-master495.jpg',
'height': 341,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-master180.jpg',
'height': 124,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-master315.jpg',
'height': 217,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-master768.jpg',
'height': 529,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-horizontalMediumAt2X.jpg',
'height': 5218,
'width': 7821,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-threeByTwoLargeAt2X.jpg',
'height': 5218,
'width': 7821,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-articleInline.jpg',
'height': 131,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-hpSmall.jpg',
'height': 112,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-blogSmallInline.jpg',
'height': 104,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/merlin_189035145_2d75d015-2525-44a7-9d4e-e2bc344847d2-mediumFlexible177.jpg',
'height': 122,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/06/11/world/11biden-overseas-dispatch-landler/11biden-overseas-dispatch-landler-mobileMasterAt3x-v2.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Remember the Trump balloon? Now there’s one for Biden, too.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Group of Seven',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Biden, Joseph R Jr',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Johnson, Boris', 'rank': 3, 'major': 'N'},
{'name': 'glocations',
'value': 'Cornwall (England)',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Europe', 'rank': 5, 'major': 'N'}],
'pub_date': '2021-06-11T10:39:24+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Mark Landler',
'person': [{'firstname': 'Mark',
'middlename': None,
'lastname': 'Landler',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e76e8a3f-f5be-5427-ab13-d9397722f760',
'word_count': 500,
'uri': 'nyt://article/e76e8a3f-f5be-5427-ab13-d9397722f760'},
{'abstract': 'The flight, from Las Vegas to Atlanta, was stalled at Harry Reid International Airport, leaving passengers sweltering in triple-digit temperatures, the department said.',
'web_url': 'https://www.nytimes.com/2023/07/20/business/delta-air-lines-heat-las-vegas-plane.html',
'snippet': 'The flight, from Las Vegas to Atlanta, was stalled at Harry Reid International Airport, leaving passengers sweltering in triple-digit temperatures, the department said.',
'lead_paragraph': 'The U.S. Department of Transportation said Thursday that it was investigating why passengers on a Delta Air Lines flight had been left to swelter for hours in triple-digit temperatures while the plane waited on the tarmac at a Las Vegas airport on Monday.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-horizontalMediumAt2X.jpg',
'height': 3537,
'width': 5306,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-threeByTwoLargeAt2X.jpg',
'height': 3537,
'width': 5306,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/07/21/lens/21xp-tarmac/21xp-tarmac-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'U.S. Investigating Why Delta Passengers Were Kept on Plane in Extreme Heat',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Heat and Heat Waves',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Transportation', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Delta Air Lines Inc',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Buttigieg, Pete (1982- )',
'rank': 5,
'major': 'N'},
{'name': 'glocations',
'value': 'Las Vegas (Nev)',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 7, 'major': 'N'}],
'pub_date': '2023-07-20T23:49:02+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'Business Day',
'byline': {'original': 'By Livia Albeck-Ripka',
'person': [{'firstname': 'Livia',
'middlename': None,
'lastname': 'Albeck-Ripka',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c9cfdf4b-0c03-592c-9fce-0d1b3f7a9699',
'word_count': 449,
'uri': 'nyt://article/c9cfdf4b-0c03-592c-9fce-0d1b3f7a9699'},
{'abstract': 'A piquant exhibition at the Wallach Art Gallery examines how adult artists use, collaborate with and learn from children. Surprises abound.',
'web_url': 'https://www.nytimes.com/2024/08/08/arts/design/growing-sideways-wallach-gallery.html',
'snippet': 'A piquant exhibition at the Wallach Art Gallery examines how adult artists use, collaborate with and learn from children. Surprises abound.',
'lead_paragraph': 'It’s not easy being a kid. Hungry? Dirty? Want to go to the playground? You are at the mercy of others. In the 1970s, though, a Polish child named Maksymilian Dobromierz had it especially rough: His parents, conceptual artists who went by the name KwieKulik, had him pose for hundreds of bizarre photos: in a toilet bowl, or surrounded by silverware or with a bucket over his head. Dobromierz, to his credit, appears to have taken it all in stride.',
'print_section': 'C',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-articleLarge.jpg',
'height': 721,
'width': 600,
'legacy': {'xlarge': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 721},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-popup.jpg',
'height': 500,
'width': 417,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-blog480.jpg',
'height': 577,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-blog533.jpg',
'height': 640,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-blog427.jpg',
'height': 513,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-tmagSF.jpg',
'height': 435,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-tmagArticle.jpg',
'height': 711,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-slide.jpg',
'height': 500,
'width': 417,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-jumbo.jpg',
'height': 1024,
'width': 853,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-superJumbo.jpg',
'height': 2048,
'width': 1705,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-blog225.jpg',
'height': 270,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-master1050.jpg',
'height': 1262,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-master675.jpg',
'height': 811,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-master495.jpg',
'height': 595,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-master180.jpg',
'height': 216,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-master315.jpg',
'height': 378,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-master768.jpg',
'height': 923,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-horizontalMediumAt2X.jpg',
'height': 1665,
'width': 2497,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-threeByTwoLargeAt2X.jpg',
'height': 1665,
'width': 2497,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-articleInline.jpg',
'height': 228,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-hpSmall.jpg',
'height': 196,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-blogSmallInline.jpg',
'height': 181,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mediumFlexible177.jpg',
'height': 213,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-mobileMasterAt3x.jpg',
'height': 2163,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/08/09/multimedia/08childhood-show-wallach-01-fckh/08childhood-show-wallach-01-fckh-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'Review: Artists Find Beauty and Darkness in Child’s Play',
'kicker': None,
'content_kicker': None,
'print_headline': 'Finding Beauty and Darkness in Child’s Play',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Art', 'rank': 1, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Wallach, Miriam and Ira D, Art Gallery',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Columbia University',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Madani, Tala', 'rank': 5, 'major': 'N'},
{'name': 'persons',
'value': 'Keane, Tina (1948- )',
'rank': 6,
'major': 'N'},
{'name': 'persons',
'value': 'Smith, Sable Elyse',
'rank': 7,
'major': 'N'}],
'pub_date': '2024-08-08T09:03:32+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Arts',
'subsection_name': 'Art & Design',
'byline': {'original': 'By Andrew Russeth',
'person': [{'firstname': 'Andrew',
'middlename': None,
'lastname': 'Russeth',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a7db94fb-2ced-5462-9446-9ca69d555a93',
'word_count': 458,
'uri': 'nyt://article/a7db94fb-2ced-5462-9446-9ca69d555a93'},
{'abstract': 'The unsettled ethics of pillaging after a catastrophe acquired a new wrinkle in Chile, where some frightened citizens were allowed to take needed staples.',
'web_url': 'https://www.nytimes.com/2010/03/07/weekinreview/07mcneil.html',
'snippet': 'The unsettled ethics of pillaging after a catastrophe acquired a new wrinkle in Chile, where some frightened citizens were allowed to take needed staples.',
'lead_paragraph': '“The law, in its majestic equality,” wrote the 19th-century novelist Anatole France, “forbids the rich as well as the poor to sleep under bridges, to beg in the streets and to steal bread.”',
'print_section': 'WK',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/03/07/weekinreview/07mcneil01/07mcneil01-popup.jpg',
'height': 828,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/03/07/weekinreview/07mcneil01/07mcneil01-articleInline.jpg',
'height': 324,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/03/07/weekinreview/07mcneil01/07mcneil01-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/03/07/weekinreview/07mcneil01/07mcneil01-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'The Moral Ambiguity of Looting',
'kicker': None,
'content_kicker': None,
'print_headline': 'Up for Grabs',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Chile',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Disasters and Emergencies',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Ethics', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Looting', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Earthquakes', 'rank': 5, 'major': 'N'}],
'pub_date': '2010-03-06T20:50:43+0000',
'document_type': 'article',
'news_desk': 'WeekInReview',
'section_name': 'Week in Review',
'byline': {'original': 'By Donald G. McNeil Jr',
'person': [{'firstname': 'Donald',
'middlename': 'G.',
'lastname': 'McNeil',
'qualifier': 'Jr',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d0677f39-2418-5c20-9d39-4d98772eef39',
'word_count': 1176,
'uri': 'nyt://article/d0677f39-2418-5c20-9d39-4d98772eef39'}],
[{'abstract': '“I don’t know what we are going to do,” one resident said. “There’s no food. And we don’t have electricity to cook.”',
'web_url': 'https://www.nytimes.com/2021/08/31/us/new-orleans-ida-recovery.html',
'snippet': '“I don’t know what we are going to do,” one resident said. “There’s no food. And we don’t have electricity to cook.”',
'lead_paragraph': 'NEW ORLEANS — Nearly all of the built city survived this time. But the misery has already arrived in New Orleans, after Hurricane Ida punched up the city on Sunday night.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'New Orleanians struggle to find their footing after yet another hurricane.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hurricane Ida (2021)',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'New Orleans (La)',
'rank': 2,
'major': 'N'}],
'pub_date': '2021-08-31T16:58:44+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Richard Fausset',
'person': [{'firstname': 'Richard',
'middlename': None,
'lastname': 'Fausset',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/74e4f59e-26ea-561c-8fb4-7e902b7a4d35',
'word_count': 491,
'uri': 'nyt://article/74e4f59e-26ea-561c-8fb4-7e902b7a4d35'},
{'abstract': 'Without notice, the Trump administration eliminated a program that had allowed immigrants to avoid deportation while undergoing lifesaving medical treatment.',
'web_url': 'https://www.nytimes.com/2019/08/30/us/politics/sick-migrants-deportation.html',
'snippet': 'Without notice, the Trump administration eliminated a program that had allowed immigrants to avoid deportation while undergoing lifesaving medical treatment.',
'lead_paragraph': 'Good Friday morning. Here are some of the stories making news in Washington and politics today.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'On Politics: Sick Migrants Can Now Be Deported',
'kicker': None,
'content_kicker': None,
'print_headline': 'Morning Edition',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 1,
'major': 'N'}],
'pub_date': '2019-08-30T04:11:57+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ac8acf81-e629-5eda-86f1-82adeb0e87ee',
'word_count': 476,
'uri': 'nyt://article/ac8acf81-e629-5eda-86f1-82adeb0e87ee'},
{'abstract': 'A barbed comedy takes a grim turn when friends find themselves tested over how far they’ll go to defend their choices and protect their children.',
'web_url': 'https://www.nytimes.com/2019/09/25/theater/mothers-review-anna-moench.html',
'snippet': 'A barbed comedy takes a grim turn when friends find themselves tested over how far they’ll go to defend their choices and protect their children.',
'lead_paragraph': 'Perhaps “mother knows best” isn’t so accurate. And maybe “motherly love” is more complicated than it seems. Anna Moench’s “Mothers,” at the Duke on 42nd Street, cracks open a vision of motherhood to reveal a ghastly core.',
'print_section': 'C',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/09/26/arts/25mothers1/25mothers1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-horizontalMediumAt2X.jpg',
'height': 2400,
'width': 3600,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-threeByTwoLargeAt2X.jpg',
'height': 2400,
'width': 3600,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/merlin_160733121_73ce8970-d0ff-4cdc-8b21-6aedb6f5a2a5-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/26/arts/25mothers1/25mothers1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘Mothers’ Review: Mommy and Me and the Apocalypse',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Two Mothers Of the Apocalypse',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Playwrights Realm',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Duke on 42nd Street',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Moench, Anna', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Parker, Robert Ross',
'rank': 5,
'major': 'N'},
{'name': 'creative_works',
'value': 'MOTHERS (PLAY)',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-09-26T01:45:05+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Theater',
'byline': {'original': 'By Maya Phillips',
'person': [{'firstname': 'Maya',
'middlename': None,
'lastname': 'Phillips',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/682fbbbb-e45c-55d2-b4db-1efb2f64c684',
'word_count': 417,
'uri': 'nyt://article/682fbbbb-e45c-55d2-b4db-1efb2f64c684'},
{'abstract': 'In “TransAtlantic,” Colum McCann uses a historic nonstop flight as a narrative anchor to take a kaleidoscopic look at more than 150 years of American and Irish history.',
'web_url': 'https://www.nytimes.com/2013/06/28/books/colum-mccanns-transatlantic-explores-ireland-and-us.html',
'snippet': 'In “TransAtlantic,” Colum McCann uses a historic nonstop flight as a narrative anchor to take a kaleidoscopic look at more than 150 years of American and Irish history.',
'lead_paragraph': 'An act of grace and transcendence — not unlike the one in his haunting 2009 novel, “Let the Great World Spin” — lies at the heart of Colum McCann’s musically patterned new novel, “TransAtlantic.” In “Let the Great World Spin,” Mr. McCann drew inspiration from Philippe Petit’s spellbinding tightrope walk between the twin towers of the World Trade Center in 1974. In “TransAtlantic,” he’s used the first nonstop flight across the Atlantic Ocean — made in 1919 by the British aviators John Alcock and Arthur Brown — as a catalyst. In both novels these acts of bravery and skill become metaphors for more everyday acts of daring, while at the same time serving as narrative anchors for Mr. McCann’s kaleidoscopic look at an expanding circle of lives. ',
'print_section': 'C',
'print_page': '21',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/06/28/arts/28BOOK/28BOOK-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-articleLarge-v3.jpg',
'height': 924,
'width': 600,
'legacy': {'xlarge': 'images/2013/06/28/arts/28BOOK/28BOOK-articleLarge-v3.jpg',
'xlargewidth': 600,
'xlargeheight': 924},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-blog480-v3.jpg',
'height': 739,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-blog427-v3.jpg',
'height': 658,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-tmagArticle-v3.jpg',
'height': 912,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-jumbo-v3.jpg',
'height': 1024,
'width': 665,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-blog225-v3.jpg',
'height': 346,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-master675-v3.jpg',
'height': 1039,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-master180-v3.jpg',
'height': 277,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-popup-v3.jpg',
'height': 500,
'width': 325,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-blog533-v3.jpg',
'height': 821,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-tmagSF-v3.jpg',
'height': 557,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-slide-v3.jpg',
'height': 500,
'width': 325,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-superJumbo-v3.jpg',
'height': 2048,
'width': 1330,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-master1050-v3.jpg',
'height': 1617,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-master495-v3.jpg',
'height': 762,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-square320-v3.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-filmstrip-v3.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-square640-v3.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-moth-v3.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-articleInline-v3.jpg',
'height': 277,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-hpSmall-v3.jpg',
'height': 238,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-blogSmallInline-v3.jpg',
'height': 220,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-mediumFlexible177-v3.jpg',
'height': 258,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-sfSpan-v4.jpg',
'height': 608,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-largeHorizontal375-v4.jpg',
'height': 577,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-hpLarge-v3.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-largeWidescreen573-v3.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-videoHpMedium-v3.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/06/28/arts/28BOOK/28BOOK-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/28/arts/28BOOK/28BOOK-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Tale of Crossings, Stitched in History',
'kicker': None,
'content_kicker': None,
'print_headline': 'Tale of Crossings, Stitched in History',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'creative_works',
'value': 'TransAtlantic (Book)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'McCann, Colum', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-06-27T20:27:15+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Books',
'byline': {'original': 'By Michiko Kakutani',
'person': [{'firstname': 'Michiko',
'middlename': None,
'lastname': 'Kakutani',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/d5e7c485-7595-5635-9e83-185fcaa0a6c4',
'word_count': 1101,
'uri': 'nyt://article/d5e7c485-7595-5635-9e83-185fcaa0a6c4'},
{'abstract': 'Beige, the Tuesday night party at the B Bar and Grill, ends its hiatus after seven years. ',
'web_url': 'https://www.nytimes.com/2018/07/03/style/beige-party-bowery-is-back.html',
'snippet': 'Beige, the Tuesday night party at the B Bar and Grill, ends its hiatus after seven years. ',
'lead_paragraph': 'Beige is back. For 17 years, this Tuesday night party at the Bowery Bar and Grill was an essential stop on the gay-fashion-downtown night life circuit. It was a place where celebrities, models and Page Six habitués bumped booties and spilled vodka cranberries alongside striving artists and handsome pleasure seekers. But it ended in 2011, as the Bowery was beset by luxury real estate. ',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/merlin_139238931_7ac443ef-67d1-44b3-8e8e-3b3d6001ec02-horizontalMediumAt2X.jpg',
'height': 2667,
'width': 4000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-threeByTwoLargeAt2X-v2.jpg',
'height': 2271,
'width': 3406,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/05/autossell/05BOITE1/05BOITE1-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'A (Mostly) Gay, Celebrity-Filled Party Returns to the Bowery',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Bars and Nightclubs',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parties (Social)', 'rank': 2, 'major': 'N'},
{'name': 'organizations', 'value': 'Bowery Bar', 'rank': 3, 'major': 'N'}],
'pub_date': '2018-07-03T17:22:43+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Brian Sloan',
'person': [{'firstname': 'Brian',
'middlename': None,
'lastname': 'Sloan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0d0c8d5e-ce75-54e5-a997-b7060edf7580',
'word_count': 459,
'uri': 'nyt://article/0d0c8d5e-ce75-54e5-a997-b7060edf7580'},
{'abstract': 'A Nobel-winning economist goes to Burning Man. Linda Hamilton is back. Margaret Atwood is, too. And “Friends” is turning 25.',
'web_url': 'https://www.nytimes.com/2019/09/06/arts/11-of-our-best-weekend-reads.html',
'snippet': 'A Nobel-winning economist goes to Burning Man. Linda Hamilton is back. Margaret Atwood is, too. And “Friends” is turning 25.',
'lead_paragraph': 'With the first week of September in the books, and the exhale of fall ahead of us, take a moment to catch up on some of our great journalism.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-superJumbo.jpg',
'height': 1334,
'width': 2000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-horizontalMediumAt2X.jpg',
'height': 1334,
'width': 2000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-threeByTwoLargeAt2X.jpg',
'height': 1334,
'width': 2000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/09/07/us/politics/07weekend-reads-promo/07weekend-reads-promo-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '11 of Our Best Weekend Reads',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Burning Man Festival',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Labor and Jobs', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'News and News Media',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Times',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-09-06T21:30:25+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'byline': {'original': 'By Remy Tumin',
'person': [{'firstname': 'Remy',
'middlename': None,
'lastname': 'Tumin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6c201ce4-481a-541d-95a7-471c63f7e0ef',
'word_count': 448,
'uri': 'nyt://article/6c201ce4-481a-541d-95a7-471c63f7e0ef'},
{'abstract': ' From handling terror alerts to hurricane warnings, learn about ways to plan for the unknown while traveling.',
'web_url': 'https://www.nytimes.com/2017/11/03/travel/5-pieces-of-inspiration-and-tips-for-travel-in-turbulent-times.html',
'snippet': ' From handling terror alerts to hurricane warnings, learn about ways to plan for the unknown while traveling.',
'lead_paragraph': 'With recent high-profile terrorist attacks in Barcelona, London and New York City, along with the proliferation of intense hurricanes this year, many travelers are placing even greater scrutiny on their vacation destinations. Every trip comes with a level of uncertainty, but the thought of visiting a country with a heightened terror threat level or shortening a trip because of an approaching storm will is likely to make most people reconsider their options. In an ever-changing world, here is some inspiration to travel the world and some ways to plan for the unknown while you do.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/11/05/travel/05train2/05train2-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-blog533-v2.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-superJumbo-v2.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-master1050-v2.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-master768-v2.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/11/05/travel/05train2/05train2-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/11/05/travel/05train2/05train2-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/05/travel/05train2/05train2-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '5 Pieces of Inspiration, and Tips, for Travel in Turbulent Times',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Disasters and Emergencies',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Terrorism', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 3,
'major': 'N'}],
'pub_date': '2017-11-03T16:03:44+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By John L. Dorman',
'person': [{'firstname': 'John',
'middlename': 'L.',
'lastname': 'Dorman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/68840385-fba2-57be-a4ff-1afaf170d709',
'word_count': 457,
'uri': 'nyt://article/68840385-fba2-57be-a4ff-1afaf170d709'},
{'abstract': 'John Jiler’s play, much like his life, focuses on the conflicts and confusion of a baby boomer’s relationships with his father and his son.',
'web_url': 'https://www.nytimes.com/2012/10/22/booming/generational-drama.html',
'snippet': 'John Jiler’s play, much like his life, focuses on the conflicts and confusion of a baby boomer’s relationships with his father and his son.',
'lead_paragraph': 'John Jiler’s new one-man play, “Ripe,” begins at a classic baby boomer moment — perhaps what has become the classic boomer moment. He is on the phone to the pharmacy ordering three sets of diapers, all of different sizes — for his elderly bedridden father; his grieving, incontinent mother; and his not-quite-toilet-trained 3-year-old son.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-blog480.jpg',
'height': 321,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-jumbo.jpg',
'height': 685,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-popup.jpg',
'height': 435,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-superJumbo.jpg',
'height': 1371,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/10/22/booming/22winerip-booming-sandwiched/22winerip-booming-sandwiched-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'A Boomer Caught Between Generations',
'kicker': 'Our Generation',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Baby Boomers',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Theater', 'rank': 2, 'major': 'N'}],
'pub_date': '2012-10-22T02:33:27+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Booming',
'byline': {'original': 'By Michael Winerip',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Winerip',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8b90f29f-e5a5-5e12-9036-78314370c7a5',
'word_count': 1112,
'uri': 'nyt://article/8b90f29f-e5a5-5e12-9036-78314370c7a5'},
{'abstract': 'The toy retailer must find a way to pay back $400 million in debt over the next few months.',
'web_url': 'https://www.nytimes.com/2017/09/06/business/toys-r-us-bankruptcy-advisers.html',
'snippet': 'The toy retailer must find a way to pay back $400 million in debt over the next few months.',
'lead_paragraph': 'Toys “R” Us has hired restructuring advisers from the prominent law firm Kirkland & Ellis as it tries to cope with hundreds of millions of dollars of debt coming due, according to two people briefed on the matter.',
'print_section': 'B',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/09/07/business/07toys1/07toys1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/09/07/business/07toys1/07toys1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/09/07/business/07toys1/07toys1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/07/business/07toys1/07toys1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'}],
'headline': {'main': 'Toys ‘R’ Us Is Said to Hire Advisers to Help Weigh Bankruptcy',
'kicker': None,
'content_kicker': None,
'print_headline': 'Toys ‘R’ Us Is Said To Weigh Bankruptcy',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Bankruptcies', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': "Toys 'R' Us Inc",
'rank': 3,
'major': 'N'}],
'pub_date': '2017-09-06T23:45:39+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Michael Corkery',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Corkery',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/58ddfc1b-bee3-56c5-ab16-2dd44ba7613b',
'word_count': 471,
'uri': 'nyt://article/58ddfc1b-bee3-56c5-ab16-2dd44ba7613b'},
{'abstract': 'How do you keep your phone from being stolen? We assembled some creative ideas to thwart the thieves.',
'web_url': 'https://www.nytimes.com/2016/05/27/travel/you-are-in-the-sea-your-stuff-is-on-the-beach-now-what.html',
'snippet': 'How do you keep your phone from being stolen? We assembled some creative ideas to thwart the thieves.',
'lead_paragraph': 'You’re alone at the beach, or maybe in a pair or a small group. It’s pretty hot out there, so it’s time to cool down in the water.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/05/27/us/27beach_exp/27beach_exp-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2016/05/27/us/27beach_exp/27beach_exp-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-master768.jpg',
'height': 511,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-superJumbo.jpg',
'height': 1068,
'width': 1604,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/05/27/us/27beach_exp/27beach_exp-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/05/27/us/27beach_exp/27beach_exp-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'You Are in the Sea. Your Stuff Is on the Beach. Now What?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Robberies and Thefts',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Beaches', 'rank': 3, 'major': 'N'}],
'pub_date': '2016-05-26T17:29:37+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Daniel Victor',
'person': [{'firstname': 'Daniel',
'middlename': None,
'lastname': 'Victor',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bbf76a96-5e37-5528-acd5-bf7c344eafcf',
'word_count': 477,
'uri': 'nyt://article/bbf76a96-5e37-5528-acd5-bf7c344eafcf'}],
[{'abstract': '“Mr. Popper’s Penguins,” at the New Victory Theater, stars life-size puppets as the creatures that upend a sedate couple’s lives — and warm their hearts.',
'web_url': 'https://www.nytimes.com/2016/10/21/theater/mr-poppers-penguins-review.html',
'snippet': '“Mr. Popper’s Penguins,” at the New Victory Theater, stars life-size puppets as the creatures that upend a sedate couple’s lives — and warm their hearts.',
'lead_paragraph': '“Waddle like you’re modeling a toddler’s diaper” isn’t the sort of choreographic direction you’d expect in many musicals. But then, not many musicals focus on penguins.',
'print_section': 'C',
'print_page': '26',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-articleInline.jpg',
'height': 251,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-hpSmall.jpg',
'height': 216,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-blogSmallInline.jpg',
'height': 200,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-mediumFlexible177.jpg',
'height': 234,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-articleLarge.jpg',
'height': 794,
'width': 600,
'legacy': {'xlarge': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 794},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-blog480.jpg',
'height': 635,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-blog427.jpg',
'height': 565,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-tmagArticle.jpg',
'height': 784,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-jumbo.jpg',
'height': 1024,
'width': 774,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-blog225.jpg',
'height': 298,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-master675.jpg',
'height': 894,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-master180.jpg',
'height': 238,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-master768.jpg',
'height': 1017,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-popup.jpg',
'height': 500,
'width': 378,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-blog533.jpg',
'height': 706,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-tmagSF.jpg',
'height': 479,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-slide.jpg',
'height': 500,
'width': 378,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-superJumbo.jpg',
'height': 2048,
'width': 1547,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-master1050.jpg',
'height': 1390,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-master495.jpg',
'height': 655,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/21/arts/21KIDSCOLUMN/21KIDSCOLUMN-master315.jpg',
'height': 417,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'}],
'headline': {'main': 'Review: When the Penguins Come Home to Roost',
'kicker': None,
'content_kicker': None,
'print_headline': 'Review: When the Penguins Come Home to Roost',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'New Victory Theater',
'rank': 2,
'major': 'N'},
{'name': 'creative_works',
'value': "Mr Popper's Penguins (Play)",
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Pins and Needles Productions',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Earle, Emma (Theater Director)',
'rank': 5,
'major': 'N'}],
'pub_date': '2016-10-20T22:53:23+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Theater',
'byline': {'original': 'By Laurel Graeber',
'person': [{'firstname': 'Laurel',
'middlename': None,
'lastname': 'Graeber',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/9aa98ac7-afef-506c-8e83-16b028104a0d',
'word_count': 429,
'uri': 'nyt://article/9aa98ac7-afef-506c-8e83-16b028104a0d'},
{'abstract': 'Fox will pay about $200 million for the seven-year-old company, which makes software that replaces small text and banner ads with interactive ad units intended to engage website visitors.',
'web_url': 'https://dealbook.nytimes.com/2014/12/17/murdochs-21st-century-fox-to-buy-truex-digital-ad-company/',
'snippet': 'Fox will pay about $200 million for the seven-year-old company, which makes software that replaces small text and banner ads with interactive ad units intended to engage website visitors.',
'lead_paragraph': '21st Century Fox announced on Wednesday a deal to acquire the digital ad technology firm TrueX, signaling a push by traditional television groups to innovate in the TV ad market before digital competitors steal away a significant portion of the $65 billion business.',
'print_section': 'B',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-superJumbo.jpg',
'height': 1058,
'width': 1587,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/17/business/dealbook/dbpix-murdoch/dbpix-murdoch-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Murdoch’s 21st Century Fox to Buy TrueX Digital Ad Company',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': '21st Century Fox Agrees to Buy Web Ad Agency',
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2014-12-17T14:38:03+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Emily Steel and David Gelles',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Steel',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'David',
'middlename': None,
'lastname': 'Gelles',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/fa3e97fd-06f9-5f9a-9dc4-bc132faa359d',
'word_count': 495,
'uri': 'nyt://article/fa3e97fd-06f9-5f9a-9dc4-bc132faa359d'},
{'abstract': 'Law Wan-tung subjected her live-in servant, Erwiana Sulistyaningsih, to various forms of abuse for months, according to testimony at her trial.',
'web_url': 'https://www.nytimes.com/2015/02/28/world/asia/hong-kong-woman-sentenced-to-6-years-for-abusing-indonesian-maid.html',
'snippet': 'Law Wan-tung subjected her live-in servant, Erwiana Sulistyaningsih, to various forms of abuse for months, according to testimony at her trial.',
'lead_paragraph': 'HONG KONG — A Hong Kong woman convicted of beating and threatening her Indonesian maid was sentenced to six years in prison on Friday, in a case that focused attention on the treatment of domestic servants here.',
'print_section': 'A',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-watch308.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-watch268.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-articleLarge.jpg',
'height': 843,
'width': 600,
'legacy': {'xlarge': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 843},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-blog480.jpg',
'height': 675,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-blog427.jpg',
'height': 600,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-tmagArticle.jpg',
'height': 832,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-jumbo.jpg',
'height': 1024,
'width': 729,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-blog225.jpg',
'height': 316,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-master675.jpg',
'height': 949,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-master180.jpg',
'height': 253,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-popup.jpg',
'height': 500,
'width': 356,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-blog533.jpg',
'height': 749,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-tmagSF.jpg',
'height': 509,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-slide.jpg',
'height': 500,
'width': 356,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-superJumbo.jpg',
'height': 2048,
'width': 1458,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-master1050.jpg',
'height': 1475,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-master495.jpg',
'height': 696,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-master315.jpg',
'height': 443,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-articleInline.jpg',
'height': 267,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-hpSmall.jpg',
'height': 229,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-blogSmallInline.jpg',
'height': 212,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-mediumFlexible177.jpg',
'height': 249,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/28/business/28HKong2-web/28HKong2-web-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Hong Kong Woman Sentenced to 6 Years for Abusing Indonesian Maid',
'kicker': None,
'content_kicker': None,
'print_headline': 'Hong Kong: 6 Years for Abusing Maid',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Hong Kong',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Assaults', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Domestic Service', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Law Wan-tung', 'rank': 5, 'major': 'N'},
{'name': 'persons',
'value': 'Erwiana Sulistyaningsih',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Indonesia', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Minimum Wage', 'rank': 8, 'major': 'N'},
{'name': 'organizations',
'value': 'AMNESTY INTERNATIONAL',
'rank': 9,
'major': 'N'}],
'pub_date': '2015-02-27T07:15:22+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Michael Forsythe',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Forsythe',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/299a8d28-f9fc-5b60-9d67-d5ab141aab46',
'word_count': 473,
'uri': 'nyt://article/299a8d28-f9fc-5b60-9d67-d5ab141aab46'},
{'abstract': 'Devon Armstrong and Winifred Oldham take care of their new family with help from relatives and social support.',
'web_url': 'https://www.nytimes.com/2010/11/28/nyregion/28neediest.html',
'snippet': 'Devon Armstrong and Winifred Oldham take care of their new family with help from relatives and social support.',
'lead_paragraph': 'Devon Armstrong and Winifred Oldham do not hear the doorbell anymore. They say they get eight hours of sleep each night but barely have the energy to rise from the couch when company arrives. And though cheerful and polite, they wear the dreamy, shell-shocked expression familiar to anyone who has learned to tune out the persistent wailing of a newborn. Or three. ',
'print_section': 'A',
'print_page': '35',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/28/nyregion/28NEEDIEST/28NEEDIEST-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/28/nyregion/28NEEDIEST/28NEEDIEST-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/28/nyregion/28NEEDIEST/28NEEDIEST-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/28/nyregion/28NEEDIEST/28NEEDIEST-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'}],
'headline': {'main': 'Putting Down Textbooks to Provide for Triplets',
'kicker': 'The Neediest Cases',
'content_kicker': None,
'print_headline': 'Putting Down Textbooks To Provide for Triplets',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'New York Times Neediest Cases Fund',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'UJA-Federation of New York',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 3, 'major': 'N'}],
'pub_date': '2010-11-27T18:21:10+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Jennifer Mascia',
'person': [{'firstname': 'Jennifer',
'middlename': None,
'lastname': 'Mascia',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/183cd94d-7425-5c80-b09c-165c5f0bae27',
'word_count': 724,
'uri': 'nyt://article/183cd94d-7425-5c80-b09c-165c5f0bae27'},
{'abstract': 'A soon-to-start online marketplace that aims to loosen Amazon’s grip on e-commerce raises $140 million.',
'web_url': 'https://dealbook.nytimes.com/2015/02/11/jet-com-gets-investment-that-values-it-at-600-million/',
'snippet': 'A soon-to-start online marketplace that aims to loosen Amazon’s grip on e-commerce raises $140 million.',
'lead_paragraph': 'Jet.com, a soon-to-start online marketplace that aims to loosen Amazon’s grip on e-commerce, said Wednesday that it had raised $140 million in a new round of funding.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Jet.com Gets Investment That Values It at $600 Million',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'E-Commerce',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Start-ups', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Venture Capital', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'ACCEL PARTNERS',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Bain Capital',
'rank': 7,
'major': 'N'},
{'name': 'organizations', 'value': 'Diapers.com', 'rank': 8, 'major': 'N'},
{'name': 'organizations',
'value': 'General Catalyst Partners',
'rank': 9,
'major': 'N'},
{'name': 'organizations',
'value': 'Goldman Sachs Group Inc',
'rank': 10,
'major': 'N'},
{'name': 'organizations',
'value': 'Google Ventures',
'rank': 11,
'major': 'N'}],
'pub_date': '2015-02-12T02:06:29+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Hiroko Tabuchi',
'person': [{'firstname': 'Hiroko',
'middlename': None,
'lastname': 'Tabuchi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6ea288d3-b971-5a9b-af56-96a8967a2f06',
'word_count': 411,
'uri': 'nyt://article/6ea288d3-b971-5a9b-af56-96a8967a2f06'},
{'abstract': 'A reader navigating a hybrid work environment is looking for a new bag.',
'web_url': 'https://www.nytimes.com/2022/09/26/style/bag-laptop-hybrid-work.html',
'snippet': 'A reader navigating a hybrid work environment is looking for a new bag.',
'lead_paragraph': 'Sadly, magic solutions are more the stuff of fairy tales than fashion. Yet pretty good solutions exist. Even when it comes to the thorny question of how to carry around your laptop, a problem that has taken on new urgency as our work habits have changed, erasing that old desktop-at-work, laptop-for-home-and-travel divide.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-master495.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-master768.jpg',
'height': 511,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-horizontalMediumAt2X.jpg',
'height': 3280,
'width': 4920,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-threeByTwoLargeAt2X.jpg',
'height': 3280,
'width': 4920,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/09/23/fashion/23Openthread-QA/23Openthread-QA-mobileMasterAt3x.jpg',
'height': 1198,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'What’s the Best Laptop Bag That Doesn’t Look Like a Laptop Bag?',
'kicker': 'ASK Vanessa',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Content Type: Service',
'rank': 2,
'major': 'N'}],
'pub_date': '2022-09-26T09:00:08+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Vanessa Friedman',
'person': [{'firstname': 'Vanessa',
'middlename': None,
'lastname': 'Friedman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a2167771-f268-5474-bea3-570f13475e81',
'word_count': 482,
'uri': 'nyt://article/a2167771-f268-5474-bea3-570f13475e81'},
{'abstract': 'The deluge left thousands homeless and renewed tensions as politicians blamed one another for the high death toll.',
'web_url': 'https://www.nytimes.com/2013/04/04/world/americas/record-flooding-kills-dozens-in-Argentina.html',
'snippet': 'The deluge left thousands homeless and renewed tensions as politicians blamed one another for the high death toll.',
'lead_paragraph': 'BUENOS AIRES — Record flash floods in Argentina have killed at least 54 people this week, officials said on Wednesday, destroying thousands of homes and renewing tensions as politicians blamed one another for the high death toll.',
'print_section': 'A',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/04/04/world/americas/04argentina/04argentina-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-articleLarge-v2.jpg',
'height': 391,
'width': 600,
'legacy': {'xlarge': 'images/2013/04/04/world/americas/04argentina/04argentina-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 391},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-blog480-v2.jpg',
'height': 313,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-blog427-v2.jpg',
'height': 278,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-tmagArticle-v2.jpg',
'height': 385,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-jumbo-v2.jpg',
'height': 667,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-blog225-v2.jpg',
'height': 147,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-popup-v2.jpg',
'height': 423,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-blog533-v2.jpg',
'height': 347,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-tmagSF-v2.jpg',
'height': 236,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-slide-v2.jpg',
'height': 391,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-superJumbo-v2.jpg',
'height': 1334,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-articleInline-v2.jpg',
'height': 124,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-hpSmall-v2.jpg',
'height': 106,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-blogSmallInline-v2.jpg',
'height': 98,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-mediumFlexible177-v2.jpg',
'height': 115,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-hpLarge-v2.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-largeWidescreen573-v2.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-videoHpMedium-v2.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/04/04/world/americas/04argentina/04argentina-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/04/04/world/americas/04argentina/04argentina-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Dozens of Argentines Die in Flash Flooding',
'kicker': None,
'content_kicker': None,
'print_headline': 'Dozens of Argentines Die In Record Flash Flooding',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'ARGENTINA',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Floods', 'rank': 3, 'major': 'N'},
{'name': 'glocations',
'value': 'La Plata (Argentina)',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-04-03T20:59:01+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By Jonathan Gilbert',
'person': [{'firstname': 'Jonathan',
'middlename': None,
'lastname': 'Gilbert',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/db8f6a8a-4761-53a9-8e03-388b85648890',
'word_count': 454,
'uri': 'nyt://article/db8f6a8a-4761-53a9-8e03-388b85648890'},
{'abstract': 'Students around the country take home the infant simulators, with little evidence that they reduce pregnancy.',
'web_url': 'https://www.nytimes.com/2019/06/14/nyregion/realcare-baby-infant-simulator.html',
'snippet': 'Students around the country take home the infant simulators, with little evidence that they reduce pregnancy.',
'lead_paragraph': 'At Hunter College High School in Manhattan, the rite of passage comes in 10th grade. Students choose a day to take home one of 12 RealCare Baby 3 robots after school, then return it the next morning.',
'print_section': 'MB',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-popup-v2.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-blog533-v2.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-superJumbo-v2.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-master1050-v2.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-master768-v2.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-horizontalMediumAt2X-v2.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-threeByTwoLargeAt2X-v2.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine3000-v2.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/14/nyregion/14ALBUM7/14ALBUM7-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Bringing Up Robot Baby, a Teenage Rite of Passage',
'kicker': None,
'content_kicker': None,
'print_headline': 'Bringing Up Robot Baby',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Teenage Pregnancy', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Hunter College High School',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Robots and Robotics',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Education (Secondary)',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Realityworks Inc',
'rank': 7,
'major': 'N'}],
'pub_date': '2019-06-14T09:00:16+0000',
'document_type': 'article',
'news_desk': 'Metropolitan',
'section_name': 'New York',
'byline': {'original': 'By Juliana Sohn and John Leland',
'person': [{'firstname': 'Juliana',
'middlename': None,
'lastname': 'Sohn',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'John',
'middlename': None,
'lastname': 'Leland',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d943a80e-47a8-5991-96f8-c03e2932c9f4',
'word_count': 437,
'uri': 'nyt://article/d943a80e-47a8-5991-96f8-c03e2932c9f4'},
{'abstract': 'The New York Youth Symphony gave a 50th-anniversary program in Carnegie Hall on Sunday, with the guest violinists Cho-Liang Lin and Michelle Kim.',
'web_url': 'https://www.nytimes.com/2012/11/27/arts/music/new-york-youth-symphony-at-carnegie-hall.html',
'snippet': 'The New York Youth Symphony gave a 50th-anniversary program in Carnegie Hall on Sunday, with the guest violinists Cho-Liang Lin and Michelle Kim.',
'lead_paragraph': 'The most moving part of the New York Youth Symphony’s concert on Sunday afternoon at Carnegie Hall came after the music had ended. ',
'print_section': 'C',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-blog480.jpg',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-jumbo.jpg',
'height': 678,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-popup.jpg',
'height': 430,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-superJumbo.jpg',
'height': 1356,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-articleInline.jpg',
'height': 277,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-sfSpan.jpg',
'height': 262,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/11/27/arts/27YOUTH/27YOUTH-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/27/arts/27YOUTH/27YOUTH-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'A Moment to Be Sentimental, but Not Mushy',
'kicker': 'Music Review',
'content_kicker': None,
'print_headline': 'A Moment to Be Sentimental, but Not Mushy',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Music', 'rank': 1, 'major': 'N'},
{'name': 'organizations',
'value': 'New York Youth Symphony',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Classical Music', 'rank': 3, 'major': 'N'}],
'pub_date': '2012-11-26T22:10:18+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Music',
'byline': {'original': 'By Zachary Woolfe',
'person': [{'firstname': 'Zachary',
'middlename': None,
'lastname': 'Woolfe',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/8493692c-f092-5d87-875c-f8cec70b83b4',
'word_count': 503,
'uri': 'nyt://article/8493692c-f092-5d87-875c-f8cec70b83b4'},
{'abstract': 'The brother of the United States attorney in Manhattan is the co-founder of a company that was recently sold to Amazon.com for more than half a billion dollars.',
'web_url': 'https://dealbook.nytimes.com/2011/06/09/the-bhararas-join-an-elite-band-of-brothers/',
'snippet': 'The brother of the United States attorney in Manhattan is the co-founder of a company that was recently sold to Amazon.com for more than half a billion dollars.',
'lead_paragraph': 'There are a bunch of brothers and sisters who have reached the pinnacles of their respective fields. Standouts include the late Bruce Wasserstein, the star investment banker, and his late sister, Wendy Wasserstein, the renowned playwright. There is Maryanne Trump Barry, a federal judge in New Jersey, and her brother, The Donald. And most famously these days, we have the Emanuels: Rahm, the mayor of Chicago; Ari, the Hollywood super agent; and Zeke, a health care expert. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Fabulous Bharara Boys',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Bharara, Preet',
'rank': 2,
'major': 'N'}],
'pub_date': '2011-06-09T19:44:41+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Peter Lattman',
'person': [{'firstname': 'Peter',
'middlename': None,
'lastname': 'Lattman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a3168568-d3fc-5f1d-a957-60cae25528bb',
'word_count': 494,
'uri': 'nyt://article/a3168568-d3fc-5f1d-a957-60cae25528bb'}],
[{'abstract': 'Must-attend parties, talked-about openings and fashionable night spots for the week ahead.',
'web_url': 'https://www.nytimes.com/2011/12/01/fashion/the-buzz.html',
'snippet': 'Must-attend parties, talked-about openings and fashionable night spots for the week ahead.',
'lead_paragraph': 'Must-attend parties, talked-about openings and fashionable night spots for the week ahead.',
'print_section': 'E',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Buzz',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Buzz',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Art', 'rank': 1, 'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parties (Social)', 'rank': 3, 'major': 'N'}],
'pub_date': '2011-11-30T23:04:47+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Bee-Shyuan Chang',
'person': [{'firstname': 'Bee-shyuan',
'middlename': None,
'lastname': 'Chang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/36bd56b2-0554-573f-ac4b-c8c2f961aecc',
'word_count': 445,
'uri': 'nyt://article/36bd56b2-0554-573f-ac4b-c8c2f961aecc'},
{'abstract': 'A man made a dramatic escape during the blaze, which officials say was caused by someone smoking in bed.',
'web_url': 'https://www.nytimes.com/2011/11/25/nyregion/five-injured-in-fire-at-brooklyn-brownstone.html',
'snippet': 'A man made a dramatic escape during the blaze, which officials say was caused by someone smoking in bed.',
'lead_paragraph': 'A fire ignited by careless smoking in bed swept through a Brooklyn row house on Thursday, critically injuring a child and a woman and hurting three others, including a man who broke a third-floor window and scrambled, screaming, to a neighbor’s awning for safety, officials and witnesses said. ',
'print_section': 'A',
'print_page': '31',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/25/nyregion/FIRE/FIRE-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/25/nyregion/FIRE/FIRE-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/25/nyregion/FIRE/FIRE-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/25/nyregion/FIRE/FIRE-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'}],
'headline': {'main': 'Five Injured in Brooklyn Fire',
'kicker': None,
'content_kicker': None,
'print_headline': 'Five Injured in Brooklyn Fire',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fires and Firefighters',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Fire Department (NYC)',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Brooklyn (NYC)',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-11-25T03:21:39+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Cara Buckley',
'person': [{'firstname': 'Cara',
'middlename': None,
'lastname': 'Buckley',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2b21dafd-7718-51be-b60a-3a3d70b4e565',
'word_count': 498,
'uri': 'nyt://article/2b21dafd-7718-51be-b60a-3a3d70b4e565'},
{'abstract': 'Should a temporary wall in an apartment be taken down before a sale?',
'web_url': 'https://www.nytimes.com/2011/11/24/garden/should-a-temporary-wall-in-an-apartment-come-down-market-ready.html',
'snippet': 'Should a temporary wall in an apartment be taken down before a sale?',
'lead_paragraph': 'Q. We put up a temporary wall in our home to create a nursery. Should we remove it before trying to sell the apartment?',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Market Ready',
'kicker': None,
'content_kicker': None,
'print_headline': 'Market Ready',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Real Estate and Housing (Residential)',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-11-23T22:23:13+0000',
'document_type': 'article',
'news_desk': 'Home',
'section_name': 'Home & Garden',
'byline': {'original': 'By Tim McKeough',
'person': [{'firstname': 'Tim',
'middlename': None,
'lastname': 'McKeough',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/10bd2108-1ba7-5641-b5d9-4ba2dd400eed',
'word_count': 539,
'uri': 'nyt://article/10bd2108-1ba7-5641-b5d9-4ba2dd400eed'},
{'abstract': 'The brother of the United States attorney in Manhattan is the co-founder of a company that was recently sold to Amazon.com for more than half a billion dollars.',
'web_url': 'https://dealbook.nytimes.com/2011/06/09/the-bhararas-join-an-elite-band-of-brothers/',
'snippet': 'The brother of the United States attorney in Manhattan is the co-founder of a company that was recently sold to Amazon.com for more than half a billion dollars.',
'lead_paragraph': 'There are a bunch of brothers and sisters who have reached the pinnacles of their respective fields. Standouts include the late Bruce Wasserstein, the star investment banker, and his late sister, Wendy Wasserstein, the renowned playwright. There is Maryanne Trump Barry, a federal judge in New Jersey, and her brother, The Donald. And most famously these days, we have the Emanuels: Rahm, the mayor of Chicago; Ari, the Hollywood super agent; and Zeke, a health care expert. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Fabulous Bharara Boys',
'kicker': 'DealBook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Bharara, Preet',
'rank': 2,
'major': 'N'}],
'pub_date': '2011-06-09T19:44:41+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'byline': {'original': 'By Peter Lattman',
'person': [{'firstname': 'Peter',
'middlename': None,
'lastname': 'Lattman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a3168568-d3fc-5f1d-a957-60cae25528bb',
'word_count': 494,
'uri': 'nyt://article/a3168568-d3fc-5f1d-a957-60cae25528bb'},
{'abstract': '“In a Pickle,” at the Brooklyn Academy of Music, is “The Winter’s Tale” for 2- through 5-year-olds. More emphasis on the sheep, less on the scary stuff.',
'web_url': 'https://www.nytimes.com/2017/04/24/theater/in-a-pickle-review.html',
'snippet': '“In a Pickle,” at the Brooklyn Academy of Music, is “The Winter’s Tale” for 2- through 5-year-olds. More emphasis on the sheep, less on the scary stuff.',
'lead_paragraph': 'Are toddlers ready for a play about the ravages of sexual jealousy? You bet.',
'print_section': 'C',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/04/25/arts/25INPICKLE/25INPICKLE-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'}],
'headline': {'main': 'Review: Shakespeare for the Very Young (Sheep Ears Included)',
'kicker': None,
'content_kicker': None,
'print_headline': 'A Lost Baby Is Crying? The Sheep Will Help',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'In a Pickle (Play)',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Oily Cart (Theater Co)',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Brooklyn Academy of Music',
'rank': 4,
'major': 'N'},
{'name': 'creative_works',
'value': "The Winter's Tale (Play)",
'rank': 5,
'major': 'N'},
{'name': 'persons',
'value': 'Shakespeare, William',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Lincoln Center for the Performing Arts',
'rank': 7,
'major': 'N'}],
'pub_date': '2017-04-24T21:41:47+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Theater',
'byline': {'original': 'By Alexis Soloski',
'person': [{'firstname': 'Alexis',
'middlename': None,
'lastname': 'Soloski',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/263ae1f6-9e42-5167-af73-4436af1e3a0e',
'word_count': 462,
'uri': 'nyt://article/263ae1f6-9e42-5167-af73-4436af1e3a0e'},
{'abstract': 'A study finds that older parents are happier than younger ones.',
'web_url': 'https://www.nytimes.com/2011/04/10/fashion/10Studied.html',
'snippet': 'A study finds that older parents are happier than younger ones.',
'lead_paragraph': 'THE GIST Older parents are happier than younger parents.',
'print_section': 'ST',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/10/fashion/STUDIED/STUDIED-blog480.jpg',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/10/fashion/STUDIED/STUDIED-jumbo.jpg',
'height': 679,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/10/fashion/STUDIED/STUDIED-popup.jpg',
'height': 431,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/10/fashion/STUDIED/STUDIED-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/10/fashion/STUDIED/STUDIED-sfSpan.jpg',
'height': 262,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/04/10/fashion/STUDIED/STUDIED-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/04/10/fashion/STUDIED/STUDIED-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Older Parents Find More Joy in Their Bundles',
'kicker': 'Studied',
'content_kicker': None,
'print_headline': 'Older Parents Find More Joy In Their Bundles',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Age, Chronological',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Happiness', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-04-07T23:00:51+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Pamela Paul',
'person': [{'firstname': 'Pamela',
'middlename': None,
'lastname': 'Paul',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2a36320a-dd4b-5747-9360-077d6b0e6204',
'word_count': 497,
'uri': 'nyt://article/2a36320a-dd4b-5747-9360-077d6b0e6204'},
{'abstract': 'The Proenza Schouler designers and Virgil Abloh visit Bergdorf Goodman, Outdoor Voices opens in SoHo, Warby Parker debuts new cat-eye frames, and more.',
'web_url': 'https://www.nytimes.com/2016/10/13/fashion/store-openings-soho-off-white-proenza-schouler-bergdorf-goodman-outdoor-voices.html',
'snippet': 'The Proenza Schouler designers and Virgil Abloh visit Bergdorf Goodman, Outdoor Voices opens in SoHo, Warby Parker debuts new cat-eye frames, and more.',
'lead_paragraph': 'Canal Street Market, a new food hall and multivendor retail space, opens on Nov. 3. It will include Yori Nori, a new restaurant concept from the owners of the Korean taco truck Korilla and the Chelsea Market ramen shop Mokbar; more than 27 artist and brand booths, including Fox Fodder Farm Flowers; and a newsstand curated by Office Magazine. At 265 Canal Street.',
'print_section': 'D',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-articleLarge.jpg',
'height': 480,
'width': 600,
'legacy': {'xlarge': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 480},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-blog480.jpg',
'height': 384,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-blog427.jpg',
'height': 341,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-tmagArticle.jpg',
'height': 473,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-jumbo.jpg',
'height': 819,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-blog225.jpg',
'height': 180,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-master675.jpg',
'height': 540,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-master180.jpg',
'height': 144,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-master768.jpg',
'height': 614,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-popup.jpg',
'height': 500,
'width': 626,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-blog533.jpg',
'height': 426,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-tmagSF.jpg',
'height': 289,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-slide.jpg',
'height': 480,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-superJumbo.jpg',
'height': 1638,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-master1050.jpg',
'height': 840,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-master495.jpg',
'height': 396,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-master315.jpg',
'height': 252,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-articleInline.jpg',
'height': 152,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-hpSmall.jpg',
'height': 130,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-blogSmallInline.jpg',
'height': 121,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-mediumFlexible177.jpg',
'height': 142,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/13/fashion/13SCOUT1/13SCOUT1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'A Slew of Store Parties to Hit Up in SoHo',
'kicker': 'Scouting Report',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 2,
'major': 'N'}],
'pub_date': '2016-10-12T21:35:01+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Alison S. Cohn',
'person': [{'firstname': 'Alison',
'middlename': 'S.',
'lastname': 'Cohn',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8e2fd40f-a691-5b1a-8049-20a287c4a0df',
'word_count': 435,
'uri': 'nyt://article/8e2fd40f-a691-5b1a-8049-20a287c4a0df'},
{'abstract': 'A new study suggests that biases against black children, especially black boys, are creeping into classrooms filled with 4-year-olds.',
'web_url': 'https://www.nytimes.com/2016/10/09/opinion/racial-profiling-in-preschool.html',
'snippet': 'A new study suggests that biases against black children, especially black boys, are creeping into classrooms filled with 4-year-olds.',
'lead_paragraph': 'That black adolescents receive harsher disciplinary punishments at school than their white peers for the same offenses is troubling enough. But federal data showing that even at the preschool level black students are nearly four times as likely to be suspended as their white peers is especially shocking. What it suggests is that racial biases are creeping into classrooms filled with 4-year-olds and that schools are effectively criminalizing black children, particularly boys, when they are barely out of diapers.',
'print_section': 'SR',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/10/09/opinion/09sun2web/09sun2web-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-articleInline.jpg',
'height': 128,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-hpSmall.jpg',
'height': 110,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-blogSmallInline.jpg',
'height': 102,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-mediumFlexible177.jpg',
'height': 119,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/10/09/opinion/09sun2web/09sun2web-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-articleLarge.jpg',
'height': 404,
'width': 600,
'legacy': {'xlarge': 'images/2016/10/09/opinion/09sun2web/09sun2web-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 404},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-blog480.jpg',
'height': 324,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-blog427.jpg',
'height': 288,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-tmagArticle.jpg',
'height': 399,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-jumbo.jpg',
'height': 690,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-blog225.jpg',
'height': 152,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-master675.jpg',
'height': 455,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-master180.jpg',
'height': 121,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-master768.jpg',
'height': 518,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-popup.jpg',
'height': 438,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-blog533.jpg',
'height': 359,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-tmagSF.jpg',
'height': 244,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-slide.jpg',
'height': 404,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-superJumbo.jpg',
'height': 1380,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-master1050.jpg',
'height': 708,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-master495.jpg',
'height': 334,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/09/opinion/09sun2web/09sun2web-master315.jpg',
'height': 212,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'}],
'headline': {'main': 'Racial Profiling in Preschool',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'Racial Profiling in Preschool',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Discrimination',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Blacks', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Black People', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Education (Pre-School)',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'School Discipline (Students)',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Racial Profiling', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Editorials', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Teachers and School Employees',
'rank': 8,
'major': 'N'}],
'pub_date': '2016-10-08T18:30:09+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/e6707b8e-f421-5d24-88e8-12ad1bc8f626',
'word_count': 436,
'uri': 'nyt://article/e6707b8e-f421-5d24-88e8-12ad1bc8f626'},
{'abstract': 'The Blackhawks were honored at the White House by a noted Chicagoan.',
'web_url': 'https://slapshot.blogs.nytimes.com/2011/03/11/blackhawks-get-the-white-house-treatment/',
'snippet': 'The Blackhawks were honored at the White House by a noted Chicagoan.',
'lead_paragraph': 'WASHINGTON — President Obama welcomed the Chicago Blackhawks to the White House on Friday in a ceremony that celebrated their Stanley Cup championship last season and hockey’s rough-and-tumble ways.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Blackhawks Get the White House Treatment',
'kicker': 'Slap Shot',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hockey, Ice',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Stanley Cup', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Kane, Patrick', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Obama, Barack', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Chicago Blackhawks',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Chicago (Ill)', 'rank': 6, 'major': 'N'}],
'pub_date': '2011-03-12T04:53:13+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'subsection_name': 'Hockey',
'byline': {'original': 'By Chris Gordon',
'person': [{'firstname': 'Chris',
'middlename': None,
'lastname': 'Gordon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/d58c17c7-eb73-59cb-93ca-b237848ae9d9',
'word_count': 500,
'uri': 'nyt://article/d58c17c7-eb73-59cb-93ca-b237848ae9d9'},
{'abstract': 'A reader asks: For new mothers who are breast-feeding, what are the best strategies for weight loss that will not jeopardize milk supply?',
'web_url': 'https://well.blogs.nytimes.com/2016/09/02/can-you-safely-lose-weight-while-breast-feeding/',
'snippet': 'A reader asks: For new mothers who are breast-feeding, what are the best strategies for weight loss that will not jeopardize milk supply?',
'lead_paragraph': 'Question:',
'print_section': 'D',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-articleInline.jpg',
'height': 129,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-hpSmall.jpg',
'height': 111,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-blogSmallInline.jpg',
'height': 103,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-mediumFlexible177.jpg',
'height': 121,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-articleLarge.jpg',
'height': 409,
'width': 600,
'legacy': {'xlarge': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 409},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-blog480.jpg',
'height': 327,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-blog427.jpg',
'height': 291,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-tmagArticle.jpg',
'height': 403,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-jumbo.jpg',
'height': 697,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-blog225.jpg',
'height': 153,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-master675.jpg',
'height': 460,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-master180.jpg',
'height': 123,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-master768.jpg',
'height': 523,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-popup.jpg',
'height': 443,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-blog533.jpg',
'height': 363,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-tmagSF.jpg',
'height': 246,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-slide.jpg',
'height': 409,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-superJumbo.jpg',
'height': 1394,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-master1050.jpg',
'height': 715,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-master495.jpg',
'height': 337,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-master315.jpg',
'height': 214,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/08/31/well/family/well-family-exerciseask/well-family-exerciseask-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'}],
'headline': {'main': 'Can You Safely Lose Weight While Breast-Feeding?',
'kicker': 'Well',
'content_kicker': None,
'print_headline': 'Ask Well',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Breastfeeding',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Diet and Nutrition',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Exercise', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Weight', 'rank': 5, 'major': 'N'}],
'pub_date': '2016-09-02T10:17:10+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Alice Callahan',
'person': [{'firstname': 'Alice',
'middlename': None,
'lastname': 'Callahan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/dee87c5d-e630-5352-ae06-be175ea8084d',
'word_count': 449,
'uri': 'nyt://article/dee87c5d-e630-5352-ae06-be175ea8084d'}],
[{'abstract': 'In an era when the unimaginable has become doable, why have some simple tasks become more complicated?',
'web_url': 'https://cityroom.blogs.nytimes.com/2010/12/23/complaint-box-modern-inconveniences/',
'snippet': 'In an era when the unimaginable has become doable, why have some simple tasks become more complicated?',
'lead_paragraph': 'Looking back at 2010, I can only wonder why, in an era when the unimaginable has become doable, have some tasks we had down become more complicated?',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Complaint Box | Modern Inconveniences',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Bathrooms and Toilets',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Traffic Signals and Signs',
'rank': 2,
'major': 'N'}],
'pub_date': '2010-12-23T23:58:28+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Rita Hall',
'person': [{'firstname': 'Rita',
'middlename': None,
'lastname': 'Hall',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/6ac600e5-6729-5d9d-839a-5cee6d57ccb1',
'word_count': 466,
'uri': 'nyt://article/6ac600e5-6729-5d9d-839a-5cee6d57ccb1'},
{'abstract': 'The Lakers continued to bolster their team quietly this offseason, signing Matt Barnes and Theo Ratliff.',
'web_url': 'https://offthedribble.blogs.nytimes.com/2010/07/23/lakers-make-ripples-with-off-season-improvements/',
'snippet': 'The Lakers continued to bolster their team quietly this offseason, signing Matt Barnes and Theo Ratliff.',
'lead_paragraph': 'Their changes have not been as drastic as the waves created in South Beach, but the Lakers have also fortified their roster this off-season while aiming for a three-peat next season.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Lakers Make Ripples With Off-Season Improvements',
'kicker': 'Off the Dribble',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-07-23T20:55:53+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Sports',
'byline': {'original': 'By Jonathan Abrams',
'person': [{'firstname': 'Jonathan',
'middlename': None,
'lastname': 'Abrams',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/c947030c-ea4a-51a6-ba77-220c6c087201',
'word_count': 462,
'uri': 'nyt://article/c947030c-ea4a-51a6-ba77-220c6c087201'},
{'abstract': 'All the fashion news of the week that’s fit to reprint.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/07/23/chic-in-review-thats-professor-franco-to-you/',
'snippet': 'All the fashion news of the week that’s fit to reprint.',
'lead_paragraph': 'All the fashion news of the week that’s fit to reprint.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Chic in Review | That’s Professor Franco to You',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-07-23T19:00:59+0000',
'document_type': 'article',
'news_desk': 'TStyle',
'section_name': 'T Magazine',
'byline': {'original': 'By Sarah Leon',
'person': [{'firstname': 'Sarah',
'middlename': None,
'lastname': 'Leon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/b1065ac4-f0dc-581a-b4ca-7e22db560bdc',
'word_count': 438,
'uri': 'nyt://article/b1065ac4-f0dc-581a-b4ca-7e22db560bdc'},
{'abstract': 'Jane Chen founded Embrace to build better and cheaper incubators for babies around the world.',
'web_url': 'https://www.nytimes.com/2015/11/22/fashion/embrace-jane-chen.html',
'snippet': 'Jane Chen founded Embrace to build better and cheaper incubators for babies around the world.',
'lead_paragraph': '',
'print_section': 'ST',
'print_page': '14',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-articleLarge.jpg',
'height': 450,
'width': 600,
'legacy': {'xlarge': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 450},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-blog427.jpg',
'height': 320,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-tmagArticle.jpg',
'height': 444,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-jumbo.jpg',
'height': 767,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-blog225.jpg',
'height': 169,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-master675.jpg',
'height': 506,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-master180.jpg',
'height': 135,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-master768.jpg',
'height': 575,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-popup.jpg',
'height': 487,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-blog533.jpg',
'height': 399,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-tmagSF.jpg',
'height': 271,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-slide.jpg',
'height': 450,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-superJumbo.jpg',
'height': 1534,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-master1050.jpg',
'height': 787,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-master495.jpg',
'height': 371,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-master315.jpg',
'height': 236,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-articleInline.jpg',
'height': 142,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-hpSmall.jpg',
'height': 122,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-blogSmallInline.jpg',
'height': 113,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/11/22/fashion/22UPNEXT/22UPNEXT-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Caring for Premature Babies, With a Little Help From Beyoncé',
'kicker': 'Up Next',
'content_kicker': None,
'print_headline': 'Her Warm Embrace',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Chen, Jane Marie (1978- )',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Weil, Elizabeth', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Embrace Warmer (Thrive Networks Global Inc)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Premature Babies', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Entrepreneurship', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Innovation', 'rank': 6, 'major': 'N'},
{'name': 'persons', 'value': 'Knowles, Beyonce', 'rank': 7, 'major': 'N'},
{'name': 'organizations',
'value': 'Embrace Innovations Pvt Ltd',
'rank': 8,
'major': 'N'}],
'pub_date': '2015-11-20T21:41:08+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Elizabeth Weil',
'person': [{'firstname': 'Elizabeth',
'middlename': None,
'lastname': 'Weil',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/73da2a14-9e14-5b1c-955c-121a76e1fce3',
'word_count': 404,
'uri': 'nyt://article/73da2a14-9e14-5b1c-955c-121a76e1fce3'},
{'abstract': 'Food news from Tony the Tiger to “The Bachelor”',
'web_url': 'https://bittman.blogs.nytimes.com/2015/02/27/what-were-reading-now-26/',
'snippet': 'Food news from Tony the Tiger to “The Bachelor”',
'lead_paragraph': '“It’s not going to help us. We need the hours.” That was the reaction of many Walmart workers after the retail giant announced it would raise wages for U.S. employees to at least $10 an hour beginning next year. While the increase is no doubt welcome, it’s nowhere close to the $15 an hour workers asked for and doesn’t address an equally big issue: not enough hours in the first place.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-watch308.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-watch268.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-articleLarge.jpg',
'height': 452,
'width': 600,
'legacy': {'xlarge': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 452},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-blog480.jpg',
'height': 362,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-blog427.jpg',
'height': 322,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-tmagArticle.jpg',
'height': 446,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-jumbo.jpg',
'height': 772,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-blog225.jpg',
'height': 170,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-master675.jpg',
'height': 509,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-master180.jpg',
'height': 136,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-popup.jpg',
'height': 490,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-blog533.jpg',
'height': 402,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-tmagSF.jpg',
'height': 273,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-slide.jpg',
'height': 452,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-superJumbo.jpg',
'height': 1544,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-master1050.jpg',
'height': 792,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-master495.jpg',
'height': 373,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-master315.jpg',
'height': 238,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-articleInline.jpg',
'height': 143,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-hpSmall.jpg',
'height': 123,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-blogSmallInline.jpg',
'height': 114,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/opinion/27bittmanweb/27bittmanweb-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'What We’re Reading Now',
'kicker': 'Mark Bittman',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Minimum Wage',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Vilsack, Tom', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Dietary Guidelines Advisory Committee',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Kellogg Company',
'rank': 4,
'major': 'N'}],
'pub_date': '2015-02-27T18:21:34+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Mark Bittman',
'person': [{'firstname': 'Mark',
'middlename': None,
'lastname': 'Bittman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2456d405-53f2-5eb2-9a8c-9ee5b92e5ec2',
'word_count': 487,
'uri': 'nyt://article/2456d405-53f2-5eb2-9a8c-9ee5b92e5ec2'},
{'abstract': 'Men find themselves making a calculation that women have made for decades: how to pursue public life and parenthood at the same time.',
'web_url': 'https://www.nytimes.com/2019/06/16/us/politics/democratic-candidates-fathers-day.html',
'snippet': 'Men find themselves making a calculation that women have made for decades: how to pursue public life and parenthood at the same time.',
'lead_paragraph': '[Sign up for our politics newsletter, and we’ll send you an invite to our live chat on debate night.]',
'print_section': 'A',
'print_page': '17',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-horizontalMediumAt2X.jpg',
'height': 3191,
'width': 4787,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-threeByTwoLargeAt2X.jpg',
'height': 3191,
'width': 4787,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/us/politics/xxdadguilt-01/xxdadguilt-01-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘Who’s Taking Care of the Kids?’ Is Finally a Question for Dads on the Trail, Too',
'kicker': None,
'content_kicker': None,
'print_headline': 'Trying to Show They Can Be President, and a Good Dad',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Work-Life Balance', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'persons',
'value': 'Biden, Joseph R Jr',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'Castro, Julian', 'rank': 7, 'major': 'N'},
{'name': 'persons',
'value': 'Gillibrand, Kirsten E',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Moulton, Seth W', 'rank': 9, 'major': 'N'},
{'name': 'persons', 'value': 'Swalwell, Eric M', 'rank': 10, 'major': 'N'},
{'name': 'persons', 'value': 'Harris, Kamala D', 'rank': 11, 'major': 'N'},
{'name': 'persons',
'value': 'Warren, Elizabeth',
'rank': 12,
'major': 'N'},
{'name': 'persons', 'value': 'Bullock, Steve', 'rank': 13, 'major': 'N'}],
'pub_date': '2019-06-16T07:30:13+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Lisa Lerer',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Lerer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f1352765-b0c2-5985-8ed2-6c11ac1af92f',
'word_count': 1840,
'uri': 'nyt://article/f1352765-b0c2-5985-8ed2-6c11ac1af92f'},
{'abstract': 'Pilobolus performs “The Inconsistent Pedaler,” which is having its New York premiere, as part of its Program B at the Joyce Theater.',
'web_url': 'https://www.nytimes.com/2014/07/19/arts/dance/pilobolus-performs-at-the-joyce-theater.html',
'snippet': 'Pilobolus performs “The Inconsistent Pedaler,” which is having its New York premiere, as part of its Program B at the Joyce Theater.',
'lead_paragraph': 'As if to assure us that they are real people, not superheroes or machines, the members of Pilobolus begin each show by warming up onstage. On Thursday at the Joyce Theater, before the program began, Shawn Fitzgerald Ahern fired off a few push-ups, Eriko Jimbo floated into a wide-legged handstand and Jordan Kriston whipped through a series of spiraling falls. The whole group circled up along with someone who appeared to be their stage manager (the technical crew is equally part of this clan), for a chummy preshow ritual that ended with a collective roar.',
'print_section': 'C',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/07/19/arts/PILOB/PILOB-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-articleLarge.jpg',
'height': 396,
'width': 600,
'legacy': {'xlarge': 'images/2014/07/19/arts/PILOB/PILOB-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 396},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-blog480.jpg',
'height': 317,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-blog427.jpg',
'height': 282,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-tmagArticle.jpg',
'height': 390,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-jumbo.jpg',
'height': 675,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-blog225.jpg',
'height': 148,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-master675.jpg',
'height': 445,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-master180.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-popup.jpg',
'height': 429,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-blog533.jpg',
'height': 352,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-tmagSF.jpg',
'height': 239,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-slide.jpg',
'height': 396,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-superJumbo.jpg',
'height': 1351,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-master1050.jpg',
'height': 693,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-master495.jpg',
'height': 327,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-master315.jpg',
'height': 208,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-articleInline.jpg',
'height': 125,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/07/19/arts/PILOB/PILOB-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/07/19/arts/PILOB/PILOB-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Pedaling a Party Back to Life',
'kicker': 'Dance Review',
'content_kicker': None,
'print_headline': 'Pedaling a Party Back to Life',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Dancing',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Keret, Etgar', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Geffen, Shira', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Joyce Theater',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Pilobolus Dance Theater',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-07-18T21:19:36+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Dance',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/073ca574-38b4-5a7b-ad27-f7e312c80ae9',
'word_count': 515,
'uri': 'nyt://article/073ca574-38b4-5a7b-ad27-f7e312c80ae9'},
{'abstract': 'Pedro Hernandez, who confessed to the 1979 killing of Etan Patz, 6, has a history of domestic violence, sexual abuse and drug abuse, according to a document filed by prosecutors.',
'web_url': 'https://www.nytimes.com/2013/12/20/nyregion/court-filing-shows-troubled-past-for-suspect-in-etan-patz-case.html',
'snippet': 'Pedro Hernandez, who confessed to the 1979 killing of Etan Patz, 6, has a history of domestic violence, sexual abuse and drug abuse, according to a document filed by prosecutors.',
'lead_paragraph': 'The man accused of killing Etan Patz has a history of sexually abusing a family member, drug abuse and acts of domestic violence against his former and current wife, according to a court document filed last week by prosecutors in the case.',
'print_section': 'A',
'print_page': '28',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Court Filing Shows Troubled Past for Suspect in Etan Patz Case',
'kicker': None,
'content_kicker': None,
'print_headline': 'Filing Shows Troubled Past For Suspect In Patz Case',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Secret, Mosi',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Hernandez, Pedro (1961- )',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Patz, Etan', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Murders and Attempted Murders',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Wiley, Maxwell', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'SoHo (Manhattan, NY)',
'rank': 6,
'major': 'N'}],
'pub_date': '2013-12-20T03:30:38+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Mosi Secret',
'person': [{'firstname': 'Mosi',
'middlename': None,
'lastname': 'Secret',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/eadd9fc6-ae7a-5494-9804-022bb9446a5c',
'word_count': 457,
'uri': 'nyt://article/eadd9fc6-ae7a-5494-9804-022bb9446a5c'},
{'abstract': 'All the fashion news of the week that’s fit to reprint.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/07/02/chic-in-review-feed-crystal-renn/',
'snippet': 'All the fashion news of the week that’s fit to reprint.',
'lead_paragraph': 'All the fashion news of the week that’s fit to reprint.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Chic in Review | A Fendi Bib?',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-07-02T15:41:18+0000',
'document_type': 'article',
'news_desk': 'TStyle',
'section_name': 'T Magazine',
'byline': {'original': 'By Sarah Leon',
'person': [{'firstname': 'Sarah',
'middlename': None,
'lastname': 'Leon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/d53e9453-1a41-5ecd-aa56-6ac6698115dc',
'word_count': 456,
'uri': 'nyt://article/d53e9453-1a41-5ecd-aa56-6ac6698115dc'},
{'abstract': 'Known for his iron resolve and his attention to detail, he transformed Grey Advertising from a midsize agency into a multinational powerhouse.',
'web_url': 'https://www.nytimes.com/2023/04/16/business/edward-h-meyer-dead.html',
'snippet': 'Known for his iron resolve and his attention to detail, he transformed Grey Advertising from a midsize agency into a multinational powerhouse.',
'lead_paragraph': 'Edward H. Meyer, an empire-building chief executive who, using an iron-willed management style and a laser focus on even the smallest details, transformed a midsize New York advertising agency into the global power known as Grey Group, died on Tuesday at his apartment in Manhattan. He was 96.',
'print_section': 'D',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-articleLarge.jpg',
'height': 405,
'width': 600,
'legacy': {'xlarge': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 405},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-popup.jpg',
'height': 439,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-blog480.jpg',
'height': 324,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-blog533.jpg',
'height': 360,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-blog427.jpg',
'height': 288,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-tmagSF.jpg',
'height': 244,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-tmagArticle.jpg',
'height': 400,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-slide.jpg',
'height': 405,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-jumbo.jpg',
'height': 691,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-superJumbo.jpg',
'height': 1382,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-blog225.jpg',
'height': 152,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-master1050.jpg',
'height': 709,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-master675.jpg',
'height': 456,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-master495.jpg',
'height': 334,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-master180.jpg',
'height': 121,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-master315.jpg',
'height': 213,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-master768.jpg',
'height': 518,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-horizontalMediumAt2X.jpg',
'height': 3045,
'width': 4568,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-threeByTwoLargeAt2X.jpg',
'height': 3045,
'width': 4568,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-articleInline.jpg',
'height': 128,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-hpSmall.jpg',
'height': 110,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-blogSmallInline.jpg',
'height': 102,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mediumFlexible177.jpg',
'height': 119,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/04/17/multimedia/14meyer-01-cgft/14meyer-01-cgft-mobileMasterAt3x.jpg',
'height': 1215,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Edward H. Meyer, Who Created an Advertising Powerhouse, Dies at 96',
'kicker': None,
'content_kicker': None,
'print_headline': 'Edward H. Meyer, Who Built an Ad Agency Into an Empire, Dies at 96',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Meyer, Edward H',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Obituaries)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': 'Grey Group', 'rank': 4, 'major': 'N'},
{'name': 'organizations', 'value': 'WPP', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Procter & Gamble Co',
'rank': 6,
'major': 'N'}],
'pub_date': '2023-04-16T15:34:45+0000',
'document_type': 'article',
'news_desk': 'Obits',
'section_name': 'Business Day',
'byline': {'original': 'By Alex Williams',
'person': [{'firstname': 'Alex',
'middlename': None,
'lastname': 'Williams',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Obituary (Obit)',
'_id': 'nyt://article/3781f455-633e-58fd-9d20-e1b3ff461f57',
'word_count': 1079,
'uri': 'nyt://article/3781f455-633e-58fd-9d20-e1b3ff461f57'}],
[{'abstract': 'Life on the economic margins grows less worrisome with the knowledge that there can still be food on the table.',
'web_url': 'https://www.nytimes.com/2022/10/06/neediest-cases/for-new-yorks-food-insecure-a-lifeline-when-it-matters-most.html',
'snippet': 'Life on the economic margins grows less worrisome with the knowledge that there can still be food on the table.',
'lead_paragraph': 'This article is part of a series recounting the stories of people who received help from nonprofit organizations supported by The New York Times Neediest Cases Fund.',
'print_section': 'A',
'print_page': '22',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-articleLarge.jpg',
'height': 750,
'width': 600,
'legacy': {'xlarge': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 750},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-popup.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-blog480.jpg',
'height': 600,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-blog533.jpg',
'height': 666,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-blog427.jpg',
'height': 534,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-tmagSF.jpg',
'height': 453,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-tmagArticle.jpg',
'height': 740,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-slide.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-jumbo.jpg',
'height': 1024,
'width': 820,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-superJumbo.jpg',
'height': 2048,
'width': 1639,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-blog225.jpg',
'height': 281,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-master1050.jpg',
'height': 1313,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-master675.jpg',
'height': 844,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-master495.jpg',
'height': 619,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-master180.jpg',
'height': 225,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-master315.jpg',
'height': 394,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-master768.jpg',
'height': 960,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-horizontalMediumAt2X.jpg',
'height': 1600,
'width': 2400,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-threeByTwoLargeAt2X.jpg',
'height': 1600,
'width': 2400,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-articleInline.jpg',
'height': 238,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-hpSmall.jpg',
'height': 204,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-blogSmallInline.jpg',
'height': 189,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mediumFlexible177.jpg',
'height': 221,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/10/09/multimedia/ncf-foodnyc-1-6443/ncf-foodnyc-1-6443-mobileMasterAt3x.jpg',
'height': 2700,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'For New York’s Food Insecure, a Lifeline When It Matters Most',
'kicker': 'The Neediest Cases Fund',
'content_kicker': None,
'print_headline': 'For New York’s Food Insecure, a Lifeline When It Matters Most',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'New York Times Neediest Cases Fund',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Food Insecurity', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'UJA-Federation of New York',
'rank': 3,
'major': 'N'}],
'pub_date': '2022-10-06T09:00:36+0000',
'document_type': 'article',
'news_desk': 'Neediest',
'section_name': 'Neediest Cases',
'byline': {'original': 'By Remy Tumin',
'person': [{'firstname': 'Remy',
'middlename': None,
'lastname': 'Tumin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b4ace126-4d6b-5be8-b634-a388dce4309c',
'word_count': 1147,
'uri': 'nyt://article/b4ace126-4d6b-5be8-b634-a388dce4309c'},
{'abstract': 'Close your introductory economics textbooks and actually look at the economy.',
'web_url': 'https://www.nytimes.com/2022/05/05/opinion/us-companies-inflation.html',
'snippet': 'Close your introductory economics textbooks and actually look at the economy.',
'lead_paragraph': 'Last fall, as container ships piled up outside the Port of Los Angeles, it looked as if inflation was going to be with us for longer than many had predicted. Curious how C.E.O.s were justifying higher prices, my team and I started listening in on hundreds of earnings calls, where, by law, companies have to tell the truth. While official statistics on inflation such as the Consumer Price Index can tell you that prices are rising, earnings calls provide rich, qualitative data that speak to why and how.',
'print_section': 'A',
'print_page': '25',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2022/05/05/opinion/05Owens/05Owens-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-popup.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-slide.jpg',
'height': 500,
'width': 501,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-jumbo.jpg',
'height': 1023,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-superJumbo.jpg',
'height': 2047,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-master1050.jpg',
'height': 1049,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/05/05/opinion/05Owens/05Owens-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-horizontalMediumAt2X.jpg',
'height': 2060,
'width': 3092,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/05/05/opinion/05Owens/05Owens-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-threeByTwoLargeAt2X.jpg',
'height': 2060,
'width': 3092,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/05/opinion/05Owens/05Owens-mobileMasterAt3x.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'I Listened In on Big Business. It’s Profiting From Inflation, and You’re Paying for It.',
'kicker': 'Guest Essay',
'content_kicker': None,
'print_headline': 'Corporate Profiteering Is the Culprit for Inflation',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'United States Economy',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Price Gouging', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Inflation (Economics)',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Regulation and Deregulation of Industry',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Company Reports', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Supply Chain', 'rank': 7, 'major': 'N'}],
'pub_date': '2022-05-05T09:00:35+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Lindsay Owens',
'person': [{'firstname': 'Lindsay',
'middlename': None,
'lastname': 'Owens',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/ec449ba9-1dc3-5a8e-9f5e-95a78414e1ee',
'word_count': 1194,
'uri': 'nyt://article/ec449ba9-1dc3-5a8e-9f5e-95a78414e1ee'},
{'abstract': 'It’s time to revive the tradition of puttering about in our favorite shops, looking for something that would make a loved one’s eyes light up.',
'web_url': 'https://www.nytimes.com/2021/11/15/opinion/local-bookstores-holiday-supply-chain.html',
'snippet': 'It’s time to revive the tradition of puttering about in our favorite shops, looking for something that would make a loved one’s eyes light up.',
'lead_paragraph': 'NASHVILLE — When our children were younger and time alone together was harder to arrange, my husband and I would set aside a single day for our Christmas shopping. I hate shopping, but I loved those daylong dates. An entire day, alone with my husband, to choose surprises that would enchant the people we love best in the world!',
'print_section': 'A',
'print_page': '25',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-articleLarge-v2.jpg',
'height': 282,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 282},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-popup-v2.jpg',
'height': 306,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-blog480-v2.jpg',
'height': 226,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-blog533-v2.jpg',
'height': 251,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-blog427-v2.jpg',
'height': 201,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-tmagSF-v2.jpg',
'height': 170,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-tmagArticle-v2.jpg',
'height': 278,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-slide-v2.jpg',
'height': 282,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-jumbo-v2.jpg',
'height': 481,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-superJumbo-v2.jpg',
'height': 963,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-blog225-v2.jpg',
'height': 106,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-master1050-v2.jpg',
'height': 494,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-master675-v2.jpg',
'height': 317,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-master495-v2.jpg',
'height': 233,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-master180-v2.jpg',
'height': 85,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-master315-v2.jpg',
'height': 148,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-master768-v2.jpg',
'height': 361,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-square320-v3.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-moth-v3.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-filmstrip-v3.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-square640-v3.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumSquare149-v3.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumSquareAt3X-v3.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-horizontalMediumAt2X.jpg',
'height': 2444,
'width': 3666,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-threeByTwoLargeAt2X.jpg',
'height': 2502,
'width': 3752,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-articleInline-v2.jpg',
'height': 89,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-hpSmall-v2.jpg',
'height': 77,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-blogSmallInline-v2.jpg',
'height': 71,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mediumFlexible177-v2.jpg',
'height': 83,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-facebookJumbo-v3.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-watch268-v3.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-verticalTwoByThree735-v3.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/18/opinion/15renkl-image1/15renkl-image1-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Forget Amazon. The Best Gifts Are Closer Than You Think.',
'kicker': 'Guest Essay',
'content_kicker': None,
'print_headline': 'This Holiday Season, Shop Local',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Book Trade and Publishing',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Christmas', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Parnassus Books (Nashville, Tenn)',
'rank': 5,
'major': 'N'},
{'name': 'glocations',
'value': 'Nashville (Tenn)',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Gifts', 'rank': 7, 'major': 'N'}],
'pub_date': '2021-11-15T10:00:14+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Margaret Renkl',
'person': [{'firstname': 'Margaret',
'middlename': None,
'lastname': 'Renkl',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b2d9b81e-5e98-567f-afd5-f73f551f0985',
'word_count': 1137,
'uri': 'nyt://article/b2d9b81e-5e98-567f-afd5-f73f551f0985'},
{'abstract': 'Days after the wildfire that destroyed Lahaina, those staying nearby say private volunteers have served as far more of a lifeline than federal and local agencies.',
'web_url': 'https://www.nytimes.com/2023/08/13/us/west-maui-hawaii-wildfires-aid.html',
'snippet': 'Days after the wildfire that destroyed Lahaina, those staying nearby say private volunteers have served as far more of a lifeline than federal and local agencies.',
'lead_paragraph': 'Days after the deadliest American wildfire in more than a century ignited in West Maui, killing dozens and leveling more than 2,200 buildings, increasingly frustrated residents said that they were receiving far more help from an ad hoc network of volunteers than they were from the government.',
'print_section': 'A',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/08/13/us/13hawaii/13hawaii-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/08/13/us/13hawaii/13hawaii-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumSquareAt3X.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/08/13/us/13hawaii/13hawaii-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/08/13/us/13hawaii/13hawaii-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘We Need Some Help Here’: West Maui Residents Say Government Aid Is Scant',
'kicker': None,
'content_kicker': None,
'print_headline': 'Maui Residents Say They’ve Been Left to Fend for Themselves',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Wildfires',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Evacuations and Evacuees',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Volunteers and Community Service',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Hawaii', 'rank': 4, 'major': 'N'},
{'name': 'glocations',
'value': 'Lahaina (Hawaii)',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Maui (Hawaii)', 'rank': 6, 'major': 'N'}],
'pub_date': '2023-08-13T14:33:36+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Kellen Browning and Mitch Smith',
'person': [{'firstname': 'Kellen',
'middlename': None,
'lastname': 'Browning',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Mitch',
'middlename': None,
'lastname': 'Smith',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a5649921-d233-5a1b-b5e1-7c54a253db63',
'word_count': 1099,
'uri': 'nyt://article/a5649921-d233-5a1b-b5e1-7c54a253db63'},
{'abstract': 'The early months as a baby grows can be hard on a parent’s muscles, because none of that “weight lifting” is guided by the strengthening — or the safety — of the parent. ',
'web_url': 'https://www.nytimes.com/2018/08/13/well/how-to-minimize-repetitive-stress-injuries-from-carrying-a-baby.html',
'snippet': 'The early months as a baby grows can be hard on a parent’s muscles, because none of that “weight lifting” is guided by the strengthening — or the safety — of the parent. ',
'lead_paragraph': '[The topics new parents are talking about. Evidence-based guidance. Personal stories that matter. Sign up now to get NYT Parenting in your inbox every week.]',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-articleLarge.jpg',
'height': 900,
'width': 600,
'legacy': {'xlarge': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 900},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-popup.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-blog480.jpg',
'height': 720,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-blog533.jpg',
'height': 799,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-blog427.jpg',
'height': 640,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-tmagSF.jpg',
'height': 543,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-tmagArticle.jpg',
'height': 888,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-slide.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-jumbo.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-superJumbo.jpg',
'height': 2048,
'width': 1366,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-blog225.jpg',
'height': 337,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-master1050.jpg',
'height': 1574,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-master675.jpg',
'height': 1012,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-master495.jpg',
'height': 742,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-master180.jpg',
'height': 270,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-master315.jpg',
'height': 472,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-master768.jpg',
'height': 1151,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-sfSpan-v2.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-horizontalMediumAt2X-v2.jpg',
'height': 848,
'width': 1271,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-threeByTwoLargeAt2X-v2.jpg',
'height': 850,
'width': 1275,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-threeByTwoMediumAt2X-v2.jpg',
'height': 850,
'width': 1275,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-hpSmall.jpg',
'height': 244,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-blogSmallInline.jpg',
'height': 226,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-mediumFlexible177.jpg',
'height': 265,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoSixteenByNineJumbo1600-v2.jpg',
'height': 796,
'width': 1414,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/08/13/well/family/13klass-injuries/13klass-injuries-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How to Minimize Repetitive Stress Injuries From Carrying a Baby',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Baby Carriages, Strollers and Carriers',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Child Car Seats', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Muscles', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Exercise', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Weight Lifting', 'rank': 8, 'major': 'N'}],
'pub_date': '2018-08-13T09:00:01+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'byline': {'original': 'By Perri Klass, M.D',
'person': [{'firstname': 'Perri',
'middlename': None,
'lastname': 'Klass',
'qualifier': 'M.D',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d823957d-fe0a-52f5-a585-1397c438b381',
'word_count': 1112,
'uri': 'nyt://article/d823957d-fe0a-52f5-a585-1397c438b381'},
{'abstract': 'The class is part of a broader effort to shed scientific light on fathers’ roles in child and family well-being.',
'web_url': 'https://www.nytimes.com/2018/06/14/well/from-a-pediatrician-lessons-for-dads-to-be.html',
'snippet': 'The class is part of a broader effort to shed scientific light on fathers’ roles in child and family well-being.',
'lead_paragraph': 'CHICAGO — In a conference room at Northwestern Memorial Hospital on a recent evening, a group of men sat down for a class on pregnancy and childbirth led by Dr. Craig Garfield, a pediatrician who specializes in studying new fathers. ',
'print_section': 'D',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-articleLarge.jpg',
'height': 396,
'width': 600,
'legacy': {'xlarge': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 396},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-popup.jpg',
'height': 429,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-blog480.jpg',
'height': 317,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-blog533.jpg',
'height': 352,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-blog427.jpg',
'height': 282,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-tmagSF.jpg',
'height': 239,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-tmagArticle.jpg',
'height': 391,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-slide.jpg',
'height': 396,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-jumbo.jpg',
'height': 676,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-superJumbo.jpg',
'height': 1351,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-blog225.jpg',
'height': 148,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-master1050.jpg',
'height': 693,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-master675.jpg',
'height': 445,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-master495.jpg',
'height': 327,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-master180.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-master315.jpg',
'height': 208,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-master768.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-horizontalMediumAt2X.jpg',
'height': 3190,
'width': 4783,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-threeByTwoLargeAt2X.jpg',
'height': 3190,
'width': 4783,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-articleInline.jpg',
'height': 125,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/19/well/family/14fatherhood1/14fatherhood1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'From a Pediatrician, Lessons for Dads-to-Be',
'kicker': None,
'content_kicker': None,
'print_headline': 'Lessons for Fathers-to-Be',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'}],
'pub_date': '2018-06-14T09:00:03+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'byline': {'original': "By Anahad O'Connor",
'person': [{'firstname': 'Anahad',
'middlename': None,
'lastname': "O'Connor",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d76d8769-aa64-5fb1-8057-389faae65dbc',
'word_count': 1271,
'uri': 'nyt://article/d76d8769-aa64-5fb1-8057-389faae65dbc'},
{'abstract': 'When Ingrid Batista found out her twins had Down syndrome, she committed herself to caring for them and showing the world their beauty.',
'web_url': 'https://www.nytimes.com/2017/11/22/nyregion/on-her-own-raising-twin-princesses-with-special-needs.html',
'snippet': 'When Ingrid Batista found out her twins had Down syndrome, she committed herself to caring for them and showing the world their beauty.',
'lead_paragraph': 'Ingrid Batista scooped up her 4-year-old daughter Alexia. “Hola, mi reina,” she said, covering her with kisses.',
'print_section': 'A',
'print_page': '26',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/11/23/nyregion/23ncf-batista3/00ncf-batista3-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'On Her Own, Raising Twin ‘Princesses’ With Special Needs',
'kicker': 'The Neediest Cases Fund',
'content_kicker': None,
'print_headline': 'A World of Love for Twin ‘Princesses’ With Special Needs',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'New York Times Neediest Cases Fund',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Catholic Charities Archdiocese of New York',
'rank': 2,
'major': 'N'}],
'pub_date': '2017-11-22T16:00:33+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Emily Palmer',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Palmer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2d6bdfd5-66c7-58e5-b8f7-10058b5db829',
'word_count': 1088,
'uri': 'nyt://article/2d6bdfd5-66c7-58e5-b8f7-10058b5db829'},
{'abstract': 'If you can use augmented reality to find cartoon monsters, why not use it to capture weirdly enticing investments?',
'web_url': 'https://www.nytimes.com/2016/10/16/business/mutfund/picking-a-portfolio-with-pokeballs.html',
'snippet': 'If you can use augmented reality to find cartoon monsters, why not use it to capture weirdly enticing investments?',
'lead_paragraph': 'Oops! Didn’t mean to bump into you there. It’s just that I can’t stop playing Pokémon Go, the smartphone game.',
'print_section': 'BU',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-articleInline.jpg',
'height': 156,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-hpSmall.jpg',
'height': 134,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-blogSmallInline.jpg',
'height': 124,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-mediumFlexible177.jpg',
'height': 146,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/10/16/business/16ESSAY/16ESSAY-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-articleLarge.jpg',
'height': 494,
'width': 600,
'legacy': {'xlarge': 'images/2016/10/16/business/16ESSAY/16ESSAY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 494},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-blog480.jpg',
'height': 395,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-blog427.jpg',
'height': 352,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-tmagArticle.jpg',
'height': 488,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-jumbo.jpg',
'height': 843,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-blog225.jpg',
'height': 185,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-master675.jpg',
'height': 556,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-master180.jpg',
'height': 148,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-master768.jpg',
'height': 633,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-popup.jpg',
'height': 500,
'width': 608,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-blog533.jpg',
'height': 439,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-tmagSF.jpg',
'height': 298,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-slide.jpg',
'height': 494,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-superJumbo.jpg',
'height': 1687,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-master1050.jpg',
'height': 865,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-master495.jpg',
'height': 408,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-master315.jpg',
'height': 259,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/10/16/business/16ESSAY/16ESSAY-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/10/16/business/16ESSAY/16ESSAY-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'}],
'headline': {'main': 'Picking a Portfolio With Pokéballs',
'kicker': 'Essay',
'content_kicker': None,
'print_headline': 'Picking a Portfolio With Pokéballs',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Stocks and Bonds',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Computer and Video Games',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Pokemon (Fictional Characters)',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Mutual Funds', 'rank': 5, 'major': 'N'},
{'name': 'persons', 'value': 'Malkiel, Burton G', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Mobile Applications',
'rank': 7,
'major': 'N'}],
'pub_date': '2016-10-14T19:52:11+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Business Day',
'subsection_name': 'Mutual Funds',
'byline': {'original': 'By John Schwartz',
'person': [{'firstname': 'John',
'middlename': None,
'lastname': 'Schwartz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c8da134e-ac1a-5fd2-9e17-9c444a38dd09',
'word_count': 1150,
'uri': 'nyt://article/c8da134e-ac1a-5fd2-9e17-9c444a38dd09'},
{'abstract': '“She’s fine,” the doctor said. “You’re doing a good job, don’t worry too much.” I could not worry too much? That was an option?',
'web_url': 'https://www.nytimes.com/2018/01/09/well/family/brooklyn-india-parenting-mothers-babies-infants-new-york.html',
'snippet': '“She’s fine,” the doctor said. “You’re doing a good job, don’t worry too much.” I could not worry too much? That was an option?',
'lead_paragraph': '[The topics parents are talking about. Evidence-based guidance. Personal stories that matter. Sign up now to get NYT Parenting in your inbox every week.]',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-articleLarge.jpg',
'height': 399,
'width': 600,
'legacy': {'xlarge': 'images/2017/12/20/well/family/well-family-india/well-family-india-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 399},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-popup.jpg',
'height': 432,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-blog480.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-blog533.jpg',
'height': 354,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-slide.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-jumbo.jpg',
'height': 681,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-superJumbo.jpg',
'height': 1362,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-master1050.jpg',
'height': 698,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-master675.jpg',
'height': 449,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-master495.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-master315.jpg',
'height': 209,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-master768.jpg',
'height': 511,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/12/20/well/family/well-family-india/well-family-india-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/12/20/well/family/well-family-india/well-family-india-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/20/well/family/well-family-india/well-family-india-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'From Brooklyn to India, in Search of the Secret to Parenthood',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Cribs (Baby Beds)', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Baby Carriages, Strollers and Carriers',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Mumbai (India)', 'rank': 7, 'major': 'N'},
{'name': 'glocations',
'value': 'Brooklyn (NYC)',
'rank': 8,
'major': 'N'}],
'pub_date': '2018-01-09T11:00:01+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'subsection_name': 'Family',
'byline': {'original': 'By Diksha Basu',
'person': [{'firstname': 'Diksha',
'middlename': None,
'lastname': 'Basu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0d3ef7b8-ea15-5ae5-b338-20a8d944eeda',
'word_count': 1122,
'uri': 'nyt://article/0d3ef7b8-ea15-5ae5-b338-20a8d944eeda'},
{'abstract': '‘Poo-phoria’ makes kids say the darndest things',
'web_url': 'https://www.nytimes.com/2020/05/29/parenting/kids-poop-talk.html',
'snippet': '‘Poo-phoria’ makes kids say the darndest things',
'lead_paragraph': 'One hot day at a pumpkin farm, Anne Johnsos found herself in the position many parents dread: holding her toddler a few inches over a port-a-potty, waiting for her to poop. The heat made the stench seem inescapable, which could have been the most lasting part of this memory — one of those moments where you lose the last shred of dignity you had that day to the never-ending delights of parenthood. Then, mid poop, her daughter looked deep into her eyes and said, “I love you more than the twinkles in the stars.”',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-superJumbo.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumSquareAt3X.jpg',
'height': 1166,
'width': 1166,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-threeByTwoLargeAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/29/multimedia/29parenting-pooping/29parenting-pooping-mobileMasterAt3x.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Why Kids Get Emotional About Pooping',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Toilet Training',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Vagus Nerve', 'rank': 4, 'major': 'N'}],
'pub_date': '2020-05-29T14:28:59+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Chelsea Whyte',
'person': [{'firstname': 'Chelsea',
'middlename': None,
'lastname': 'Whyte',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/93590905-0df7-5f18-97e5-892e61186307',
'word_count': 1221,
'uri': 'nyt://article/93590905-0df7-5f18-97e5-892e61186307'}],
[{'abstract': 'In August 1994, the city turned itself upside down looking for a 2-month-old girl who was snatched from her mother at her job in Brooklyn.',
'web_url': 'https://www.nytimes.com/2015/05/04/nyregion/recalling-an-infants-kidnapping-that-shocked-new-york.html',
'snippet': 'In August 1994, the city turned itself upside down looking for a 2-month-old girl who was snatched from her mother at her job in Brooklyn.',
'lead_paragraph': '“You wrote a story about me in 1994,” the voice on the phone said, “but I lost the clipping. Could you send me another copy?”',
'print_section': 'A',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-articleLarge.jpg',
'height': 391,
'width': 600,
'legacy': {'xlarge': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 391},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-blog480.jpg',
'height': 313,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-blog427.jpg',
'height': 278,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-tmagArticle.jpg',
'height': 386,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-jumbo.jpg',
'height': 667,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-blog225.jpg',
'height': 147,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-master675.jpg',
'height': 440,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-master180.jpg',
'height': 117,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-popup.jpg',
'height': 423,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-blog533.jpg',
'height': 347,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-tmagSF.jpg',
'height': 236,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-slide.jpg',
'height': 391,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-superJumbo.jpg',
'height': 1334,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-master1050.jpg',
'height': 684,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-master495.jpg',
'height': 322,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-master315.jpg',
'height': 205,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-articleInline.jpg',
'height': 124,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-hpSmall.jpg',
'height': 106,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-blogSmallInline.jpg',
'height': 98,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-mediumFlexible177.jpg',
'height': 115,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/05/03/nyregion/04GRACEWEB1/04GRACEWEB1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Abducted as an Infant, Revisiting It as an Adult',
'kicker': 'Grace Notes',
'content_kicker': None,
'print_headline': 'Abducted as an Infant, Revisiting It as an Adult ',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Salcedo, Helen Anea (1994- )',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Kidnapping and Hostages',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Brooklyn (NYC)', 'rank': 6, 'major': 'N'},
{'name': 'organizations',
'value': 'Police Department (NYC)',
'rank': 7,
'major': 'N'},
{'name': 'glocations',
'value': 'Woodhaven (Queens, NY)',
'rank': 8,
'major': 'N'}],
'pub_date': '2015-05-03T15:47:09+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By James Barron',
'person': [{'firstname': 'James',
'middlename': None,
'lastname': 'Barron',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1c1aedfc-f3bc-5a4b-9e47-f1bdaba55d30',
'word_count': 1229,
'uri': 'nyt://article/1c1aedfc-f3bc-5a4b-9e47-f1bdaba55d30'},
{'abstract': 'Congress is trying to rush billions of dollars to the border to alleviate the suffering of detained migrants, but Democrats fear the funds will advance President Trump’s immigration policies.',
'web_url': 'https://www.nytimes.com/2019/06/24/us/politics/migrants-emergency-aid-border.html',
'snippet': 'Congress is trying to rush billions of dollars to the border to alleviate the suffering of detained migrants, but Democrats fear the funds will advance President Trump’s immigration policies.',
'lead_paragraph': 'WASHINGTON — Congress is trying to rush $4.5 billion in emergency humanitarian aid to the southwestern border while placing new restrictions on President Trump’s immigration crackdown, spurred on by disturbing images of suffering migrant families and of children living in squalor in overcrowded detention facilities.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-blog533-v2.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-superJumbo-v2.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-master1050-v2.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-master768-v2.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-smallSquare168-v3.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-smallSquare252-v3.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-square320-v3.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-moth-v3.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-filmstrip-v3.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-square640-v3.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-mediumSquare149-v3.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-horizontalMediumAt2X-v2.jpg',
'height': 3542,
'width': 5313,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-hpLarge-v3.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-largeWidescreen573-v3.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-largeWidescreen1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-thumbWide-v4.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-thumbWide-v4.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoThumb-v4.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoLarge-v4.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-mediumThreeByTwo210-v4.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-mediumThreeByTwo225-v4.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-mediumThreeByTwo440-v4.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-mediumThreeByTwo252-v4.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-mediumThreeByTwo378-v4.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-threeByTwoLargeAt2X-v4.jpg',
'height': 3523,
'width': 5285,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-threeByTwoMediumAt2X-v4.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-threeByTwoSmallAt2X-v4.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoHpMedium-v3.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine600-v3.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine540-v3.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine495-v3.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine390-v3.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine480-v3.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine310-v3.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine225-v3.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine96-v3.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine3000-v3.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine768-v3.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNine150-v3.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoSixteenByNineJumbo1600-v3.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-videoFifteenBySeven2610-v3.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-facebookJumbo-v3.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-watch268-v3.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/24/us/24dc-cong-1/24dc-cong-1-verticalTwoByThree735-v3.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Emergency Aid for Migrants Badly Divides Democrats',
'kicker': None,
'content_kicker': None,
'print_headline': 'Democrats Split Over Bill to Send Relief to Border',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Immigration Detention',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Humanitarian Aid', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Human Rights and Human Rights Violations',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Deportation', 'rank': 6, 'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 7, 'major': 'N'},
{'name': 'organizations',
'value': 'Democratic Party',
'rank': 8,
'major': 'N'},
{'name': 'organizations',
'value': 'House of Representatives',
'rank': 9,
'major': 'N'},
{'name': 'organizations', 'value': 'Senate', 'rank': 10, 'major': 'N'},
{'name': 'persons', 'value': 'Pelosi, Nancy', 'rank': 11, 'major': 'N'}],
'pub_date': '2019-06-24T23:52:29+0000',
'document_type': 'article',
'news_desk': 'Washington',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Julie Hirschfeld Davis',
'person': [{'firstname': 'Julie',
'middlename': 'Hirschfeld',
'lastname': 'Davis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/674cfbef-e5b9-56af-8731-259dbab442a2',
'word_count': 1804,
'uri': 'nyt://article/674cfbef-e5b9-56af-8731-259dbab442a2'},
{'abstract': 'A look inside the Border Patrol station at Clint, Tex., where visiting lawyers said they saw migrant children being held in filthy conditions.',
'web_url': 'https://www.nytimes.com/2019/06/26/us/migrant-children-border-clint-texas.html',
'snippet': 'A look inside the Border Patrol station at Clint, Tex., where visiting lawyers said they saw migrant children being held in filthy conditions.',
'lead_paragraph': 'CLINT, Tex. — Children as young as 3 pressed their faces against the windows of one crowded cell holding nearly 20 migrant girls, some sprawled on the floor. Boys gazed through the fencing of a containment zone exposed to the 101-degree heat.',
'print_section': 'A',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/26/us/26clint/26clint-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-horizontalMediumAt2X.jpg',
'height': 3333,
'width': 5000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-threeByTwoLargeAt2X.jpg',
'height': 3333,
'width': 5000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/merlin_157005123_25694de4-9417-4f6f-8dfc-38f94898d51b-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/26/us/26clint/26clint-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘Don’t Talk to Her’: We Toured the Troubled Border Station Housing Migrant Children',
'kicker': None,
'content_kicker': None,
'print_headline': '‘Don’t Talk to Her’: A Glimpse Inside a Troubled Detention Center in Texas',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration Detention',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Border Patrol (US)',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Clint (Tex)', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Texas', 'rank': 6, 'major': 'N'}],
'pub_date': '2019-06-27T01:35:11+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Simon Romero',
'person': [{'firstname': 'Simon',
'middlename': None,
'lastname': 'Romero',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9843b176-e928-5a0e-8884-12e538fda529',
'word_count': 1172,
'uri': 'nyt://article/9843b176-e928-5a0e-8884-12e538fda529'},
{'abstract': 'I work the night shift. It’s a good job, except they pay us so little. It would be easier except right now, it takes me about two hours on buses to drop my kids off and get to work.',
'web_url': 'https://parenting.blogs.nytimes.com/2014/02/14/terran-lyons-mcdonalds-crew-trainer-on-raising-2-on-the-minimum-wage/',
'snippet': 'I work the night shift. It’s a good job, except they pay us so little. It would be easier except right now, it takes me about two hours on buses to drop my kids off and get to work.',
'lead_paragraph': 'I’m 24 years old. I’m a single mother. I work at McDonald’s. I make $9.85 an hour. I usually get about 40 hours a week. I like it. I work the night shift, because I’m a hard worker, and they have plenty of workers for the day shift. They need workers at night — good workers.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-articleLarge.jpg',
'height': 308,
'width': 600,
'legacy': {'xlarge': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 308},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-blog480.jpg',
'height': 246,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-blog427.jpg',
'height': 219,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-tmagArticle.jpg',
'height': 304,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-jumbo.jpg',
'height': 525,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-blog225.jpg',
'height': 115,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-master675.jpg',
'height': 346,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-master180.jpg',
'height': 92,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-popup.jpg',
'height': 333,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-blog533.jpg',
'height': 273,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-tmagSF.jpg',
'height': 186,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-slide.jpg',
'height': 308,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-superJumbo.jpg',
'height': 1051,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-master1050.jpg',
'height': 539,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-master495.jpg',
'height': 254,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-master315.jpg',
'height': 162,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-articleInline.jpg',
'height': 97,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-hpSmall.jpg',
'height': 84,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-blogSmallInline.jpg',
'height': 77,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-mediumFlexible177.jpg',
'height': 91,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/14/blogs/motherlode-terran3/motherlode-terran3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Terran Lyons, McDonald’s Crew Trainer, on Raising 2 on the Minimum Wage',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Childhood',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Labor and Jobs', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Minimum Wage', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Wages and Salaries',
'rank': 5,
'major': 'N'}],
'pub_date': '2014-02-15T01:43:03+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': "By Terran Lyons, as told to KJ Dell'Antonia",
'person': [{'firstname': 'Terran',
'middlename': None,
'lastname': 'Lyons',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': None,
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/37f04754-3600-50a1-ad43-43e0cafa7fbc',
'word_count': 1119,
'uri': 'nyt://article/37f04754-3600-50a1-ad43-43e0cafa7fbc'},
{'abstract': 'With their possessions destroyed by Hurricane Sandy or stolen by looters, members of a family who trekked for three miles through the storm to find shelter are happy to have one another.',
'web_url': 'https://www.nytimes.com/2012/12/29/nyregion/counting-blessings-after-a-harrowing-flood-escape.html',
'snippet': 'With their possessions destroyed by Hurricane Sandy or stolen by looters, members of a family who trekked for three miles through the storm to find shelter are happy to have one another.',
'lead_paragraph': 'When Hurricane Sandy hit New York City, Yuliana Oleynik and Stanislav Izgiayev trekked for three miles through flooded streets to deliver their two children to safety. Their son Nicholas, then 10 months, rode atop Mr. Izgiayev’s shoulders, while Ms. Oleynik was responsible for their other child, Isaac, whom she was quite literally carrying: She was seven and a half months pregnant.',
'print_section': 'A',
'print_page': '16',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/29/nyregion/NEEDIEST/NEEDIEST-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Counting Blessings After a Harrowing Storm Escape',
'kicker': 'The Neediest Cases',
'content_kicker': None,
'print_headline': 'Counting Blessings After a Harrowing Storm Escape',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'New York Times Neediest Cases Fund',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Hurricane Sandy (2012)',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'UJA-Federation of New York',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Philanthropy', 'rank': 4, 'major': 'N'}],
'pub_date': '2012-12-29T01:56:09+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By John Otis',
'person': [{'firstname': 'John',
'middlename': None,
'lastname': 'Otis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4e1baaab-0840-5241-855d-a55d1798999d',
'word_count': 783,
'uri': 'nyt://article/4e1baaab-0840-5241-855d-a55d1798999d'},
{'abstract': 'Shoppers on their initial Black Friday excursions found good deals, but many did not seem to think it was worth braving the crowds.',
'web_url': 'https://www.nytimes.com/2011/11/26/business/black-friday-shoppers-fan-out-in-the-dark-of-night.html',
'snippet': 'Shoppers on their initial Black Friday excursions found good deals, but many did not seem to think it was worth braving the crowds.',
'lead_paragraph': 'They were the Black Friday novices: people who, drawn by the earlier-than-usual store openings or economic necessity, decided to try their hands at shopping on the busiest day of the retail year.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'For Black Friday First-Timers, Not a Night of Conversion',
'kicker': None,
'content_kicker': None,
'print_headline': 'For Black Friday Novices, It Was Perhaps Not a Night of Conversion',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Black Friday (Shopping)',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'New Jersey', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-11-25T08:18:29+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Stephanie Clifford and Christopher Maag',
'person': [{'firstname': 'Stephanie',
'middlename': None,
'lastname': 'Clifford',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Christopher',
'middlename': None,
'lastname': 'Maag',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/66c2f90c-bf2f-5e6a-afd2-40d8890ef42a',
'word_count': 1090,
'uri': 'nyt://article/66c2f90c-bf2f-5e6a-afd2-40d8890ef42a'},
{'abstract': 'Who’s behind an “Obamacare” protest ad? Who knows?',
'web_url': 'https://www.nytimes.com/2010/10/03/weekinreview/03mcintire.html',
'snippet': 'Who’s behind an “Obamacare” protest ad? Who knows?',
'lead_paragraph': 'IT was the wisecracking baby who caught my attention.',
'print_section': 'WK',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/03/weekinreview/MCINTcov/MCINTcov-jumbo.jpg',
'height': 1024,
'width': 750,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/03/weekinreview/MCINTcov/MCINTcov-popup.jpg',
'height': 500,
'width': 366,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/03/weekinreview/MCINTcov/MCINTcov-articleInline.jpg',
'height': 259,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/03/weekinreview/MCINTcov/MCINTcov-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/10/03/weekinreview/MCINTcov/MCINTcov-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'The Secret Sponsors',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Secret Sponsors',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Citizens United v Federal Election Commission (Supreme Court Decision)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Health Insurance and Managed Care',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Nonprofit Organizations',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Political Advertising',
'rank': 4,
'major': 'N'}],
'pub_date': '2010-10-03T01:20:02+0000',
'document_type': 'article',
'news_desk': 'WeekInReview',
'section_name': 'Week in Review',
'byline': {'original': 'By Mike McIntire',
'person': [{'firstname': 'Mike',
'middlename': None,
'lastname': 'McIntire',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/279771d6-556b-50c5-bfe4-515a0948ab9c',
'word_count': 1299,
'uri': 'nyt://article/279771d6-556b-50c5-bfe4-515a0948ab9c'},
{'abstract': 'Account assignments, executive appointments and miscellaneous news from advertising agencies.',
'web_url': 'https://www.nytimes.com/2012/03/12/business/media/news-from-the-advertising-industry.html',
'snippet': 'Account assignments, executive appointments and miscellaneous news from advertising agencies.',
'lead_paragraph': 'Accounts',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'News From the Advertising Industry',
'kicker': None,
'content_kicker': None,
'print_headline': 'News From the Advertising Industry',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Appointments and Executive Changes',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Public Relations and Publicity',
'rank': 3,
'major': 'N'}],
'pub_date': '2012-03-12T15:38:29+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Stuart Elliott',
'person': [{'firstname': 'Stuart',
'middlename': None,
'lastname': 'Elliott',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4ab20a40-4ecc-5390-89ca-89d9790708f5',
'word_count': 1106,
'uri': 'nyt://article/4ab20a40-4ecc-5390-89ca-89d9790708f5'},
{'abstract': 'We’ve been covering emergency preparedness at Wirecutter since Hurricane Harvey in 2017, through research and our own lived experience. We’ve kept warm during New Hampshire snowstorms, grabbed a go-bag prepared for a pet during a wildfire evacuation in California, and stored water ahead of a hurricane in Southern Florida. Some disasters are so sudden that...',
'web_url': 'https://www.nytimes.com/wirecutter/blog/wirecutter-emergency-preparation/',
'snippet': 'We’ve been covering emergency preparedness at Wirecutter since Hurricane Harvey in 2017, through research and our own lived experience. We’ve kept warm during New Hampshire snowstorms, grabbed a go-bag prepared for a pet during a wildfire evacuati...',
'lead_paragraph': 'We’ve been covering emergency preparedness at Wirecutter since Hurricane Harvey in 2017, through research and our own lived experience. We’ve kept warm during New Hampshire snowstorms, grabbed a go-bag prepared for a pet during a wildfire evacuation in California, and stored water ahead of a hurricane in Southern Florida. Some disasters are so sudden that...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/09/20230922_EmergencyPreparednessNewsletter_Our-Philosophy-on-Emergency-Preparedness_3x2.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/09/20230922_EmergencyPreparednessNewsletter_Our-Philosophy-on-Emergency-Preparedness_3x2.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/09/20230922_EmergencyPreparednessNewsletter_Our-Philosophy-on-Emergency-Preparedness_3x2.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/media/2023/09/20230922_EmergencyPreparednessNewsletter_Our-Philosophy-on-Emergency-Preparedness_3x2.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'How Wirecutter’s Experts Approach Emergency Preparation Coverage',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2023-10-03T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/6c040769-b286-5901-9285-0a485d9b4986',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/6c040769-b286-5901-9285-0a485d9b4986'},
{'abstract': 'The consumer goods giant said it will increase prices on fabric care products in February and personal care products in April.',
'web_url': 'https://www.nytimes.com/2022/01/19/business/procter-gamble-2q-2021-earnings.html',
'snippet': 'The consumer goods giant said it will increase prices on fabric care products in February and personal care products in April.',
'lead_paragraph': 'Shoppers shrugged off rising prices last year on products like Pampers diapers and Charmin toilet paper, Procter & Gamble said on Wednesday in announcing a jump in its second-quarter earnings.',
'print_section': 'B',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-articleLarge.jpg',
'height': 337,
'width': 600,
'legacy': {'xlarge': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 337},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-popup.jpg',
'height': 366,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-blog480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-blog533.jpg',
'height': 300,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-blog427.jpg',
'height': 240,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-tmagSF.jpg',
'height': 204,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-tmagArticle.jpg',
'height': 333,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-slide.jpg',
'height': 337,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-jumbo.jpg',
'height': 576,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-superJumbo.jpg',
'height': 1152,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-blog225.jpg',
'height': 127,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-master1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-master675.jpg',
'height': 380,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-master495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-master180.jpg',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-master315.jpg',
'height': 177,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-master768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-horizontalMediumAt2X.jpg',
'height': 2189,
'width': 3284,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-threeByTwoLargeAt2X.jpg',
'height': 2189,
'width': 3284,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-articleInline.jpg',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-hpSmall.jpg',
'height': 92,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mediumFlexible177.jpg',
'height': 100,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/19/multimedia/19econ-brf-procter/19econ-brf-procter-mobileMasterAt3x.jpg',
'height': 1012,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Procter & Gamble’s sales jump as consumers brush off rising prices.',
'kicker': None,
'content_kicker': None,
'print_headline': 'Procter & Gamble’s Sales Jump as Consumers Brush Off Rising Prices',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Company Reports',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Procter & Gamble Co',
'rank': 3,
'major': 'N'}],
'pub_date': '2022-01-19T14:52:46+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Coral Murphy Marcos',
'person': [{'firstname': 'Coral',
'middlename': 'Murphy',
'lastname': 'Marcos',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/506d20a4-5f6d-58b3-ae7e-ee72c58f2cfa',
'word_count': 482,
'uri': 'nyt://article/506d20a4-5f6d-58b3-ae7e-ee72c58f2cfa'}],
[{'abstract': 'The mother of the 8-month-old filed a police report after the child’s father failed to return him to his home in the Bronx, a police official said.',
'web_url': 'https://www.nytimes.com/2018/08/07/nyregion/floating-baby-nyc-father.html',
'snippet': 'The mother of the 8-month-old filed a police report after the child’s father failed to return him to his home in the Bronx, a police official said.',
'lead_paragraph': 'The police were searching on Tuesday for the father of an 8-month-old boy whose lifeless body was found floating in the East River river. The father was the last person known to have custody of the baby and has fled to Southeast Asia, the police said.',
'print_section': 'A',
'print_page': '18',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Father Sought in Death of Baby Boy Found Floating Near Brooklyn Bridge',
'kicker': None,
'content_kicker': None,
'print_headline': 'Father Sought In Death of Boy Found in River',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'AMERICAN AIRLINES',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'LaGuardia Airport (Queens, NY)',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Office of the Chief Medical Examiner of the City of New York',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Police Department (NYC)',
'rank': 6,
'major': 'N'},
{'name': 'glocations',
'value': 'Brooklyn Bridge (NYC)',
'rank': 7,
'major': 'N'},
{'name': 'glocations',
'value': 'East River (NYC)',
'rank': 8,
'major': 'N'}],
'pub_date': '2018-08-07T23:52:10+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Ashley Southall',
'person': [{'firstname': 'Ashley',
'middlename': None,
'lastname': 'Southall',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c56bba60-9ae6-5da0-9e26-a52c7e574289',
'word_count': 493,
'uri': 'nyt://article/c56bba60-9ae6-5da0-9e26-a52c7e574289'},
{'abstract': 'The Department of Veterans Affairs, which has struggled for years to provide timely and efficient care, has been without permanent leadership since March and is dealing with high staff turnover.',
'web_url': 'https://www.nytimes.com/2018/07/23/us/politics/senate-confirms-robert-wilkie-veterans-affairs.html',
'snippet': 'The Department of Veterans Affairs, which has struggled for years to provide timely and efficient care, has been without permanent leadership since March and is dealing with high staff turnover.',
'lead_paragraph': 'The United States Senate on Monday overwhelmingly voted to approve President Trump’s latest pick to lead the Department of Veterans Affairs, confirming Robert Wilkie as the next secretary 86 to 9.',
'print_section': 'A',
'print_page': '13',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/merlin_140398482_97f363ce-d217-443d-8687-4813a5bcf558-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/24/us/24wilkie_xp/24wilkie_xp-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Senate Confirms Robert Wilkie as Veterans Affairs Secretary',
'kicker': None,
'content_kicker': None,
'print_headline': 'Lawyer, With Experience at Defense Dept., to Lead the V.A.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Wilkie, Robert',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Veterans Affairs Department',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 3,
'major': 'N'},
{'name': 'organizations', 'value': 'Senate', 'rank': 4, 'major': 'N'}],
'pub_date': '2018-07-24T00:37:58+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Sarah Mervosh',
'person': [{'firstname': 'Sarah',
'middlename': None,
'lastname': 'Mervosh',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3591f32e-1029-5ccf-a4bd-bca045cdbc4d',
'word_count': 503,
'uri': 'nyt://article/3591f32e-1029-5ccf-a4bd-bca045cdbc4d'},
{'abstract': 'The more expensive strollers and cribs and organic diapers become, the better it is for everyone else.',
'web_url': 'https://www.nytimes.com/2013/06/16/magazine/the-sippy-cup-1.html',
'snippet': 'The more expensive strollers and cribs and organic diapers become, the better it is for everyone else.',
'lead_paragraph': 'I’m not the first to admit that raising a child in Park Slope, Brooklyn, can bear an embarrassing resemblance to the TV show “Portlandia.” My wife and I try to have some ironic distance from the culture of organic, chemical-free parenting, but we’re often participants. At the 2013 Brooklyn Baby Expo, though, I was shocked by the number of companies hawking natural products, organic foods and biodynamic skin creams. (Is biodynamic a subset of organic, or something else?) There was even a guy selling teething rings made out of plant-derived plastic resin who could have been played by Fred Armisen.',
'print_section': 'MM',
'print_page': '20',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-articleLarge.jpg',
'height': 733,
'width': 600,
'legacy': {'xlarge': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 733},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-blog480.jpg',
'height': 587,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-blog427.jpg',
'height': 522,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-tmagArticle.jpg',
'height': 724,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-jumbo.jpg',
'height': 1024,
'width': 838,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-blog225.jpg',
'height': 275,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-master675.jpg',
'height': 825,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-master180.jpg',
'height': 220,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-popup.jpg',
'height': 500,
'width': 410,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-blog533.jpg',
'height': 651,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-tmagSF.jpg',
'height': 442,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-slide.jpg',
'height': 500,
'width': 410,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-superJumbo.jpg',
'height': 2048,
'width': 1676,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-master1050.jpg',
'height': 1283,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-master495.jpg',
'height': 605,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-articleInline.jpg',
'height': 232,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-hpSmall.jpg',
'height': 199,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-blogSmallInline.jpg',
'height': 185,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-mediumFlexible177.jpg',
'height': 216,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/16economy-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/06/16/magazine/16economy/16economy-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/16economy-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/16/magazine/16economy/mag-16Economy-t_CA0-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'The Sippy Cup 1%',
'kicker': None,
'content_kicker': None,
'print_headline': 'The Sippy Cup 1%',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Consumer Behavior', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 5,
'major': 'N'}],
'pub_date': '2013-06-11T09:00:08+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Adam Davidson',
'person': [{'firstname': 'Adam',
'middlename': None,
'lastname': 'Davidson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c6218495-5fd5-5749-93db-55cb3a36aac9',
'word_count': 1176,
'uri': 'nyt://article/c6218495-5fd5-5749-93db-55cb3a36aac9'},
{'abstract': 'Have you ever seen a “promposal,” either live or online? Would you like to be either the recipient or the designer of a promposal of your own? Why or why not?',
'web_url': 'https://learning.blogs.nytimes.com/2016/04/13/student-question-do-you-want-to-be-promposed-to/',
'snippet': 'Have you ever seen a “promposal,” either live or online? Would you like to be either the recipient or the designer of a promposal of your own? Why or why not?',
'lead_paragraph': 'Have you ever seen a “promposal,” either live or online? Would you like to be either the recipient or the designer of a promposal of your own? Why or why not?',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-articleLarge.jpg',
'height': 340,
'width': 600,
'legacy': {'xlarge': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 340},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-blog480.jpg',
'height': 272,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-blog427.jpg',
'height': 242,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-tmagArticle.jpg',
'height': 335,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-jumbo.jpg',
'height': 579,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-blog225.jpg',
'height': 127,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-master675.jpg',
'height': 382,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-master180.jpg',
'height': 102,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-master768.jpg',
'height': 435,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-popup.jpg',
'height': 368,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-blog533.jpg',
'height': 302,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-tmagSF.jpg',
'height': 205,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-slide.jpg',
'height': 340,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-superJumbo.jpg',
'height': 1159,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-master1050.jpg',
'height': 594,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-master495.jpg',
'height': 280,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-master315.jpg',
'height': 178,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-articleInline.jpg',
'height': 108,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-hpSmall.jpg',
'height': 92,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-blogSmallInline.jpg',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-mediumFlexible177.jpg',
'height': 100,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/04/08/magazine/08mag-promposals/08mag-promposals-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Student Question | Do You Want to Be ‘Promposed’ To?',
'kicker': 'The Learning Network',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2016-04-13T09:08:50+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Education',
'byline': {'original': 'By Katherine Schulten',
'person': [{'firstname': 'Katherine',
'middlename': None,
'lastname': 'Schulten',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d346a5e5-7552-57f3-a99b-a6cca8a7eba0',
'word_count': 552,
'uri': 'nyt://article/d346a5e5-7552-57f3-a99b-a6cca8a7eba0'},
{'abstract': 'Hours before a rally where Donald J. Trump has promised a big endorsement, Sarah Palin’s daughter Bristol attacked Senator Ted Cruz and said she hoped her mother would instead endorse Mr. Trump.',
'web_url': 'https://www.nytimes.com/politics/first-draft/2016/01/19/sarah-palins-daughter-slams-ted-cruz-fans-trump-endorsement-speculation/',
'snippet': 'Hours before a rally where Donald J. Trump has promised a big endorsement, Sarah Palin’s daughter Bristol attacked Senator Ted Cruz and said she hoped her mother would instead endorse Mr. Trump.',
'lead_paragraph': 'As rumors swirled Tuesday that Sarah Palin, the 2008 Republican vice-presidential nominee, would endorse Donald J. Trump in Iowa, the former Alaska governor posted on Twitter a link to a comment from her daughter Bristol slamming Senator Ted Cruz, who holds a slim lead over Mr. Trump in the polls there.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/19/us/19firstdraft-Palin/19firstdraft-Palin-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Sarah Palin’s Daughter Slams Ted Cruz, Fans Trump Endorsement Speculation',
'kicker': 'First Draft',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Presidential Election of 2016',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Cruz, Ted', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Palin, Bristol', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Palin, Sarah', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'AMES (IOWA)', 'rank': 6, 'major': 'N'},
{'name': 'glocations', 'value': 'Iowa', 'rank': 7, 'major': 'N'}],
'pub_date': '2016-01-19T18:23:47+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Maggie Haberman',
'person': [{'firstname': 'Maggie',
'middlename': None,
'lastname': 'Haberman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/36f33a50-597f-5c58-a31e-851fc1cde1d3',
'word_count': 437,
'uri': 'nyt://article/36f33a50-597f-5c58-a31e-851fc1cde1d3'},
{'abstract': 'The garbage, which was mistakenly shipped to the Philippines in 2013 and 2014, had been the subject of a diplomatic dispute and outrage from President Rodrigo Duterte.',
'web_url': 'https://www.nytimes.com/2019/05/23/world/asia/philippines-canada-trash.html',
'snippet': 'The garbage, which was mistakenly shipped to the Philippines in 2013 and 2014, had been the subject of a diplomatic dispute and outrage from President Rodrigo Duterte.',
'lead_paragraph': 'MANILA — The Canadian government said on Wednesday that it would take back tons of garbage sent to the Philippines several years ago, after President Rodrigo Duterte ordered that it be returned immediately.',
'print_section': 'A',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/23/world/23philippines/23philippines-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-horizontalMediumAt2X.jpg',
'height': 3514,
'width': 5271,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-threeByTwoLargeAt2X.jpg',
'height': 3514,
'width': 5271,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/merlin_155171745_c74a339b-111a-45fa-bc2c-c4fd60349d49-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/23/world/23philippines/23philippines-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Canada Agrees to Take Back Trash Sent to Philippines Years Ago',
'kicker': None,
'content_kicker': None,
'print_headline': 'Trash Collection Day',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Philippines',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Canada', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Duterte, Rodrigo', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 5,
'major': 'N'}],
'pub_date': '2019-05-23T06:52:08+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Jason Gutierrez',
'person': [{'firstname': 'Jason',
'middlename': None,
'lastname': 'Gutierrez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/696716b9-c888-560e-97a9-c00584d87c30',
'word_count': 528,
'uri': 'nyt://article/696716b9-c888-560e-97a9-c00584d87c30'},
{'abstract': 'Following the birth of his daughter, Rian Dundon documented the messiness and gravity surrounding his new role in life.',
'web_url': 'https://www.nytimes.com/2019/02/20/lens/fatherhood-view-of-the-world.html',
'snippet': 'Following the birth of his daughter, Rian Dundon documented the messiness and gravity surrounding his new role in life.',
'lead_paragraph': 'Fatherhood, when new life begins — and old lives become sleep-deprived hallucinations glimpsed between midnight feedings and diaper changes.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/02/20/lens/20Dad1/20Dad1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/02/20/lens/20Dad1/20Dad1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-horizontalMediumAt2X.jpg',
'height': 3264,
'width': 4896,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/02/20/lens/20Dad1/20Dad1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-threeByTwoLargeAt2X.jpg',
'height': 3264,
'width': 4896,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/20/lens/20Dad1/20Dad1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How Fatherhood Alters Your View of the World',
'kicker': 'lens',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Photography', 'rank': 2, 'major': 'N'}],
'pub_date': '2019-02-20T09:00:01+0000',
'document_type': 'article',
'news_desk': 'Photo',
'section_name': 'Lens',
'byline': {'original': 'By Rian Dundon and David Gonzalez',
'person': [{'firstname': 'Rian',
'middlename': None,
'lastname': 'Dundon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'David',
'middlename': None,
'lastname': 'Gonzalez',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bfa7c79d-8def-586b-a8b2-73554e23e7a5',
'word_count': 516,
'uri': 'nyt://article/bfa7c79d-8def-586b-a8b2-73554e23e7a5'},
{'abstract': 'Readers offered their experiences of abortion decisions and living with family members with Down syndrome in response to a recent op-ed.',
'web_url': 'https://takingnote.blogs.nytimes.com/2015/09/09/down-syndrome-and-abortion-readers-share-their-stories/',
'snippet': 'Readers offered their experiences of abortion decisions and living with family members with Down syndrome in response to a recent op-ed.',
'lead_paragraph': 'As legislators in Ohio consider banning abortion following a fetal diagnosis of Down syndrome, readers shared stories of abortion decisions and living with family members with the disorder.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/09/09/opinion/9tessierWEB/9tessierWEB-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Down Syndrome and Abortion: Readers Share Their Stories',
'kicker': 'Taking Note',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Abortion',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Down Syndrome', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 4,
'major': 'N'}],
'pub_date': '2015-09-09T14:38:32+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Marie Tessier',
'person': [{'firstname': 'Marie',
'middlename': None,
'lastname': 'Tessier',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/931eff4d-b5ae-5f49-b10a-673c663300e6',
'word_count': 528,
'uri': 'nyt://article/931eff4d-b5ae-5f49-b10a-673c663300e6'},
{'abstract': 'Former Gov. Jeb Bush of Florida on Wednesday made his most extensive comments about foreign policy since announcing that he was considering a run for the Republican presidential nomination.',
'web_url': 'https://www.nytimes.com/politics/first-draft/2015/02/18/key-points-from-jeb-bushs-foreign-policy-speech/',
'snippet': 'Former Gov. Jeb Bush of Florida on Wednesday made his most extensive comments about foreign policy since announcing that he was considering a run for the Republican presidential nomination.',
'lead_paragraph': 'Former Gov. Jeb Bush of Florida on Wednesday made his most extensive comments about foreign policy since announcing that he was considering a run for the Republican presidential nomination. Speaking for more than an hour at the Chicago Council on Global Affairs, he touched on the biggest international threats facing America, offered a critique of the Obama administration and sought to differentiate himself from the presidencies of his father and his brother. Here are some highlights and key points:',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-watch308-v2.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-watch268-v2.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSmall-v4.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoHpMedium-v4.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine600-v4.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine540-v4.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine495-v4.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine390-v4.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine480-v4.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine310-v4.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine225-v4.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine96-v4.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine768-v4.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine150-v4.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-videoSixteenByNine1050-v4.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/18/us/politics/18firstdraft-jeb-bush/18firstdraft-jeb-bush-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Key Points From Jeb Bush’s Foreign Policy Speech',
'kicker': 'First Draft',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'United States International Relations',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Bush, George W', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Bush, Jeb', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Obama, Barack', 'rank': 4, 'major': 'N'},
{'name': 'organizations', 'value': 'Hezbollah', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 6, 'major': 'N'}],
'pub_date': '2015-02-18T19:58:48+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Alan Rappeport',
'person': [{'firstname': 'Alan',
'middlename': None,
'lastname': 'Rappeport',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/77be0dd0-9f87-59a4-9515-8b7752de1094',
'word_count': 504,
'uri': 'nyt://article/77be0dd0-9f87-59a4-9515-8b7752de1094'},
{'abstract': 'A report showing the use of excessively punitive policies in public schools against our most vulnerable children should shame the nation.',
'web_url': 'https://www.nytimes.com/2014/03/27/opinion/giving-up-on-4-year-olds.html',
'snippet': 'A report showing the use of excessively punitive policies in public schools against our most vulnerable children should shame the nation.',
'lead_paragraph': 'A new report released by the Department of Education’s Office for Civil Rights, examining the disciplinary practices of the country’s 97,000 public schools, shows that excessively punitive policies are being used at every level of the public school system — even against 4-year-olds in preschool. This should shame the nation and force it to re-evaluate the destructive measures that schools are using against their most vulnerable children.',
'print_section': 'A',
'print_page': '30',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Giving Up on 4-Year-Olds',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'Giving Up on 4-Year-Olds',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'School Discipline (Students)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Education (Pre-School)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Education (K-12)', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Discrimination', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Blacks', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Black People', 'rank': 6, 'major': 'N'},
{'name': 'organizations',
'value': 'Education Department (US)',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Minorities', 'rank': 8, 'major': 'N'},
{'name': 'subject', 'value': 'Editorials', 'rank': 9, 'major': 'N'},
{'name': 'subject', 'value': 'Disabilities', 'rank': 10, 'major': 'N'}],
'pub_date': '2014-03-27T01:24:10+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/9aa6e21f-a8e6-53a0-b68e-46fbd0a7dbdf',
'word_count': 530,
'uri': 'nyt://article/9aa6e21f-a8e6-53a0-b68e-46fbd0a7dbdf'}],
[{'abstract': 'A report showing the use of excessively punitive policies in public schools against our most vulnerable children should shame the nation.',
'web_url': 'https://www.nytimes.com/2014/03/27/opinion/giving-up-on-4-year-olds.html',
'snippet': 'A report showing the use of excessively punitive policies in public schools against our most vulnerable children should shame the nation.',
'lead_paragraph': 'A new report released by the Department of Education’s Office for Civil Rights, examining the disciplinary practices of the country’s 97,000 public schools, shows that excessively punitive policies are being used at every level of the public school system — even against 4-year-olds in preschool. This should shame the nation and force it to re-evaluate the destructive measures that schools are using against their most vulnerable children.',
'print_section': 'A',
'print_page': '30',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Giving Up on 4-Year-Olds',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'Giving Up on 4-Year-Olds',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'School Discipline (Students)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Education (Pre-School)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Education (K-12)', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Discrimination', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Blacks', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Black People', 'rank': 6, 'major': 'N'},
{'name': 'organizations',
'value': 'Education Department (US)',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Minorities', 'rank': 8, 'major': 'N'},
{'name': 'subject', 'value': 'Editorials', 'rank': 9, 'major': 'N'},
{'name': 'subject', 'value': 'Disabilities', 'rank': 10, 'major': 'N'}],
'pub_date': '2014-03-27T01:24:10+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/9aa6e21f-a8e6-53a0-b68e-46fbd0a7dbdf',
'word_count': 530,
'uri': 'nyt://article/9aa6e21f-a8e6-53a0-b68e-46fbd0a7dbdf'},
{'abstract': 'Larry Fink moved to Greenwich Village from suburbia in 1958, finding like-minded renegades among the Beat Generation.',
'web_url': 'https://lens.blogs.nytimes.com/2014/04/25/far-out-and-close-up/',
'snippet': 'Larry Fink moved to Greenwich Village from suburbia in 1958, finding like-minded renegades among the Beat Generation.',
'lead_paragraph': 'The San Francisco Chronicle columnist Herb Caen, who coined the term “beatnik” in 1958, saw them as a mass phenomenon, with hordes of young “bearded kats and kits” overrunning a party in North Beach and “slopping up” free booze. The poet Kenneth Rexroth, who introduced the first major reading of Beat poets, dismissed the whole phenomenon as a creation of the Luce magazine empire, carping that “after the first five writers, it produced nothing.” And when the writer Hettie Jones was asked about the Beat generation, she joked that “everyone identified with it could fit into my living room.”',
'print_section': 'CT',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-articleLarge.jpg',
'height': 613,
'width': 600,
'legacy': {'xlarge': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 613},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-blog480.jpg',
'height': 490,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-blog427.jpg',
'height': 436,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-tmagArticle.jpg',
'height': 605,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-jumbo.jpg',
'height': 900,
'width': 881,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-blog225.jpg',
'height': 230,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-master675.jpg',
'height': 690,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-master180.jpg',
'height': 184,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-popup.jpg',
'height': 500,
'width': 490,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-blog533.jpg',
'height': 544,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-tmagSF.jpg',
'height': 370,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-slide.jpg',
'height': 500,
'width': 490,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-superJumbo.jpg',
'height': 900,
'width': 881,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-master495.jpg',
'height': 506,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-master315.jpg',
'height': 322,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-articleInline.jpg',
'height': 194,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-hpSmall.jpg',
'height': 167,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-blogSmallInline.jpg',
'height': 154,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-mediumFlexible177.jpg',
'height': 181,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/24/blogs/20140424-lens-fink-slide-ARS0/20140424-lens-fink-slide-ARS0-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Far Out and Close Up',
'kicker': 'Lens',
'content_kicker': None,
'print_headline': 'His Beat Friends ',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Photography', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Poetry and Poets', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Caen, Herb', 'rank': 4, 'major': 'N'},
{'name': 'persons', 'value': 'Fink, Larry', 'rank': 5, 'major': 'N'},
{'name': 'persons', 'value': 'Rexroth, Kenneth', 'rank': 6, 'major': 'N'},
{'name': 'glocations',
'value': 'Greenwich Village (Manhattan, NY)',
'rank': 7,
'major': 'N'},
{'name': 'glocations',
'value': 'Long Island (NY)',
'rank': 8,
'major': 'N'},
{'name': 'glocations', 'value': 'Pennsylvania', 'rank': 9, 'major': 'N'}],
'pub_date': '2014-04-25T09:00:53+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Multimedia/Photos',
'byline': {'original': 'By John Leland',
'person': [{'firstname': 'John',
'middlename': None,
'lastname': 'Leland',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2277a4f5-6c81-5719-a4de-19d603e5a25b',
'word_count': 522,
'uri': 'nyt://article/2277a4f5-6c81-5719-a4de-19d603e5a25b'},
{'abstract': '“Big Hero 6” is about a teenage robotics prodigy who must save his city from a madman.',
'web_url': 'https://www.nytimes.com/2014/09/04/business/media/disney-details-a-new-boy-centric-animated-movie.html',
'snippet': '“Big Hero 6” is about a teenage robotics prodigy who must save his city from a madman.',
'lead_paragraph': 'BURBANK, Calif. — Disney’s last animated movie, “Frozen,” made little girls go berserk. Is Disney’s next big-screen cartoon, “Big Hero 6,” about to do the same thing for their brothers? What exactly happens in “Big Hero 6,” anyway?',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/09/04/business/media/04big/04big-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-articleLarge.jpg',
'height': 251,
'width': 600,
'legacy': {'xlarge': 'images/2014/09/04/business/media/04big/04big-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 251},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-blog480.jpg',
'height': 201,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-blog427.jpg',
'height': 179,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-tmagArticle.jpg',
'height': 248,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-jumbo.jpg',
'height': 429,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-blog225.jpg',
'height': 94,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-master675.jpg',
'height': 283,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-master180.jpg',
'height': 75,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-popup.jpg',
'height': 272,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-blog533.jpg',
'height': 223,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-tmagSF.jpg',
'height': 152,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-slide.jpg',
'height': 251,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-superJumbo.jpg',
'height': 804,
'width': 1920,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-master1050.jpg',
'height': 440,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-master495.jpg',
'height': 207,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-master315.jpg',
'height': 132,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-articleInline.jpg',
'height': 80,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-hpSmall.jpg',
'height': 68,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-blogSmallInline.jpg',
'height': 63,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-mediumFlexible177.jpg',
'height': 74,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/09/04/business/media/04big/04big-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/04/business/media/04big/04big-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Disney Details a New, Boy-Centric Animated Movie',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Animated Films',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Robots and Robotics',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Walt Disney Company',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Marvel Entertainment',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Hall, Don', 'rank': 5, 'major': 'N'},
{'name': 'persons',
'value': 'Williams, Chris (Film Director)',
'rank': 6,
'major': 'N'},
{'name': 'creative_works',
'value': 'Big Hero 6 (Movie)',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Movies', 'rank': 8, 'major': 'N'}],
'pub_date': '2014-09-03T19:02:32+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Brooks Barnes',
'person': [{'firstname': 'Brooks',
'middlename': None,
'lastname': 'Barnes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5b777fc3-1766-5ec1-a567-5840997a26d2',
'word_count': 494,
'uri': 'nyt://article/5b777fc3-1766-5ec1-a567-5840997a26d2'},
{'abstract': 'What challenges do you or your siblings give your parents?',
'web_url': 'https://learning.blogs.nytimes.com/2012/11/30/how-do-you-make-parenting-difficult-for-your-parents/',
'snippet': 'What challenges do you or your siblings give your parents?',
'lead_paragraph': 'Being the parent of a baby may not be easy, but the responsibilities of a good parent are plain enough to see: feeding, protecting, nurturing the baby — and changing diapers, too. As they grow older, though, children often present a whole new set of challenges to parents. How do you make parenting difficult for your parents? How have your parents adapted to these challenges?',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-articleLarge.jpg',
'height': 374,
'width': 600,
'legacy': {'xlarge': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 374},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-blog480.jpg',
'height': 299,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-jumbo.jpg',
'height': 639,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-popup.jpg',
'height': 405,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-superJumbo.jpg',
'height': 1277,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-sfSpan.jpg',
'height': 246,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/28/style/28mystory-booming-olderkids-LN/28mystory-booming-olderkids-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'How Do You Make Parenting Difficult for Your Parents?',
'kicker': 'The Learning Network',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-11-30T10:00:23+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Education',
'byline': {'original': 'By Michael Gonchar',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Gonchar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1ad4f210-42ce-544e-b308-57364ddecf3f',
'word_count': 524,
'uri': 'nyt://article/1ad4f210-42ce-544e-b308-57364ddecf3f'},
{'abstract': 'Jon Olsen gets colorful.',
'web_url': 'https://www.nytimes.com/2019/08/05/crosswords/daily-puzzle-2019-08-06.html',
'snippet': 'Jon Olsen gets colorful.',
'lead_paragraph': 'TUESDAY PUZZLE — When we last met Jon Olsen, he was making his debut in the New York Times Crossword by smiling at us, but in this puzzle, he’s kind of … well, you’ll see.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-horizontalMediumAt2X.jpg',
'height': 3669,
'width': 5504,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-threeByTwoLargeAt2X.jpg',
'height': 3669,
'width': 5504,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/08/06/crosswords/06wordplay-blue-sky/merlin_158352516_9d59f923-5c73-4363-bae5-fc6813e997c2-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Inspired by a Bobby Vinton Hit',
'kicker': 'wordplay, the crossword column',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Crossword Puzzles',
'rank': 1,
'major': 'N'}],
'pub_date': '2019-08-06T02:00:01+0000',
'document_type': 'article',
'news_desk': 'Games',
'section_name': 'Crosswords & Games',
'byline': {'original': 'By Deb Amlen',
'person': [{'firstname': 'Deb',
'middlename': None,
'lastname': 'Amlen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7876a411-3a9c-5a1e-bd2b-b24af06340df',
'word_count': 557,
'uri': 'nyt://article/7876a411-3a9c-5a1e-bd2b-b24af06340df'},
{'abstract': 'More than 20 emergency responders took hours to determine that a lifeless baby in a “Crawling Dead” shirt was a fake.',
'web_url': 'https://www.nytimes.com/2019/06/18/nyregion/dead-baby-doll-park-queens.html',
'snippet': 'More than 20 emergency responders took hours to determine that a lifeless baby in a “Crawling Dead” shirt was a fake.',
'lead_paragraph': '[What you need to know to start the day: Get New York Today in your inbox.]',
'print_section': 'A',
'print_page': '21',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-superJumbo.jpg',
'height': 1333,
'width': 2000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-horizontalMediumAt2X.jpg',
'height': 1333,
'width': 2000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-threeByTwoLargeAt2X.jpg',
'height': 1333,
'width': 2000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/766f8a94085d43b9bd29a855213bb5db-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/18/nyregion/18babyPROMO/18babyPROMO-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'A Horrific Discovery in a Park Turns Bizarre: It Was a Doll, Not a Baby',
'kicker': None,
'content_kicker': None,
'print_headline': 'Dead Baby In a Park Turns Out To Be a Doll',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hoaxes and Pranks',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Dolls', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Bayside (Queens, NY)',
'rank': 4,
'major': 'N'},
{'name': 'glocations',
'value': 'Crocheron Park (Queens, NY)',
'rank': 5,
'major': 'N'}],
'pub_date': '2019-06-18T22:09:35+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Corey Kilgannon and Ashley Southall',
'person': [{'firstname': 'Corey',
'middlename': None,
'lastname': 'Kilgannon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Ashley',
'middlename': None,
'lastname': 'Southall',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d103eec3-d772-5263-8c74-87e5e6b35f23',
'word_count': 533,
'uri': 'nyt://article/d103eec3-d772-5263-8c74-87e5e6b35f23'},
{'abstract': 'Clint Eastwood’s speech bombed, and ageist remarks were quick to follow.',
'web_url': 'https://newoldage.blogs.nytimes.com/2012/09/04/on-ageism-and-eastwooding/',
'snippet': 'Clint Eastwood’s speech bombed, and ageist remarks were quick to follow.',
'lead_paragraph': 'One advantage of age: I’m old enough to remember the Democratic convention in Atlanta in 1988, when then-Gov. Bill Clinton of Arkansas, deemed a rising young pol making his debut on the national stage, gave a much-anticipated but ultimately disastrous nominating speech for Michael Dukakis.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'On Ageism and ‘Eastwooding’',
'kicker': 'The New Old Age',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Elder Care',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Republican National Convention',
'rank': 2,
'major': 'N'}],
'pub_date': '2012-09-04T15:44:59+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Health',
'byline': {'original': 'By Paula Span',
'person': [{'firstname': 'Paula',
'middlename': None,
'lastname': 'Span',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3b8c3394-304b-50cb-be13-791e5049a643',
'word_count': 553,
'uri': 'nyt://article/3b8c3394-304b-50cb-be13-791e5049a643'},
{'abstract': '“The Oracle,” a dance inspired by Stravinsky’s “Rite of Spring,” was a star vehicle for the soloist Paul White.',
'web_url': 'https://www.nytimes.com/2013/02/11/arts/dance/the-oracle-at-skirball-center.html',
'snippet': '“The Oracle,” a dance inspired by Stravinsky’s “Rite of Spring,” was a star vehicle for the soloist Paul White.',
'lead_paragraph': 'Anyone making yet another dance to “The Rite of Spring” better have a good reason. The 100th anniversary of Stravinsky’s 1913 score isn’t enough. That event is surely among the reasons “The Oracle,” a 2009 “Rite” solo conceived and directed by the Australian choreographer Meryl Tankard, had its New York premiere at the Skirball Center on Thursday. ',
'print_section': 'C',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/02/11/arts/tankard/tankard-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-articleLarge.jpg',
'height': 890,
'width': 600,
'legacy': {'xlarge': 'images/2013/02/11/arts/tankard/tankard-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 890},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-blog480.jpg',
'height': 712,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-blog427.jpg',
'height': 633,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-tmagArticle.jpg',
'height': 878,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-jumbo.jpg',
'height': 1024,
'width': 691,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-popup.jpg',
'height': 500,
'width': 338,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-blog533.jpg',
'height': 790,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-tmagSF.jpg',
'height': 537,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-slide.jpg',
'height': 500,
'width': 338,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-superJumbo.jpg',
'height': 2048,
'width': 1382,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-articleInline.jpg',
'height': 282,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-hpSmall.jpg',
'height': 242,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-blogSmallInline.jpg',
'height': 224,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/02/11/arts/tankard/tankard-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/11/arts/tankard/tankard-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Stravinsky Inspired, a Dance Aims High',
'kicker': 'Dance Review',
'content_kicker': None,
'print_headline': 'Stravinsky Inspired, A Dance Aims High',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Dancing',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Tankard, Meryl', 'rank': 3, 'major': 'N'},
{'name': 'persons',
'value': 'White, Paul (1983- )',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-02-10T21:33:33+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Dance',
'byline': {'original': 'By Brian Seibert',
'person': [{'firstname': 'Brian',
'middlename': None,
'lastname': 'Seibert',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/d683307e-c130-5c9d-9624-4b5b9b701aba',
'word_count': 548,
'uri': 'nyt://article/d683307e-c130-5c9d-9624-4b5b9b701aba'},
{'abstract': 'In Florida, Newt Gingrich says Mitt Romney and the president have anti-religious agendas.',
'web_url': 'https://takingnote.blogs.nytimes.com/2012/01/30/a-war-on-religion/',
'snippet': 'In Florida, Newt Gingrich says Mitt Romney and the president have anti-religious agendas.',
'lead_paragraph': 'TAMPA – Mitt Romney is comfortably ahead in Florida, according to several polls, and has begun to taunt Newt Gingrich about it, as he did this afternoon standing in the warm sun of Dunedin, a nearby Gulf town.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'A War on Religion?',
'kicker': 'Taking Note',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Birth Control and Family Planning',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Freedom of Religion',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Gingrich, Newt', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Romney, Mitt', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Florida', 'rank': 5, 'major': 'N'}],
'pub_date': '2012-01-30T23:20:36+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By David Firestone',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Firestone',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/acc110ee-77e3-5ee6-9722-9c68eb77479d',
'word_count': 520,
'uri': 'nyt://article/acc110ee-77e3-5ee6-9722-9c68eb77479d'},
{'abstract': 'The White House takes its fight to extend the payroll tax cut to Twitter, asking people what losing $40 every two weeks would mean to them.',
'web_url': 'https://thecaucus.blogs.nytimes.com/2011/12/21/what-does-40-mean-to-you/',
'snippet': 'The White House takes its fight to extend the payroll tax cut to Twitter, asking people what losing $40 every two weeks would mean to them.',
'lead_paragraph': 'After House Republicans rejected a Senate compromise to extend a payroll tax cut, the White House took the fight to Twitter with the hashtag #40dollars.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'What Does $40 Mean to You?',
'kicker': 'The Caucus',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Taxation',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Boehner, John A', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Plouffe, David', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'House of Representatives',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Republican Party',
'rank': 6,
'major': 'N'},
{'name': 'organizations', 'value': 'Storify.com', 'rank': 7, 'major': 'N'},
{'name': 'organizations', 'value': 'Twitter', 'rank': 8, 'major': 'N'}],
'pub_date': '2011-12-22T03:41:08+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Jennifer Preston',
'person': [{'firstname': 'Jennifer',
'middlename': None,
'lastname': 'Preston',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f0b7d94d-36ea-525a-8f1c-36769ce00323',
'word_count': 451,
'uri': 'nyt://article/f0b7d94d-36ea-525a-8f1c-36769ce00323'}],
[{'abstract': 'The life reports are in. Meet Karen Matarangas.',
'web_url': 'https://brooks.blogs.nytimes.com/2011/11/29/the-life-report-karen-matarangas/',
'snippet': 'The life reports are in. Meet Karen Matarangas.',
'lead_paragraph': 'The following Life Report was submitted in response to my column of Oct. 28, in which I asked readers over 70 to write autobiographical essays evaluating their own lives.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Life Report: Karen Matarangas',
'kicker': 'David Brooks',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Education (K-12)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Brooks, David', 'rank': 2, 'major': 'N'},
{'name': 'glocations',
'value': 'San Jose (Calif)',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-11-29T21:18:32+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Opinion',
'byline': {'original': 'By David Brooks',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Brooks',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/615e237c-48b9-51b3-a776-0faae991e371',
'word_count': 542,
'uri': 'nyt://article/615e237c-48b9-51b3-a776-0faae991e371'},
{'abstract': 'Beginning a week of Sept. 11 commemorations, Mr. Bloomberg honored shopkeepers and residents as well as the developers who have led the area’s revival.',
'web_url': 'https://cityroom.blogs.nytimes.com/2011/09/06/bloomberg-hails-lower-manhattans-revival-since-911/',
'snippet': 'Beginning a week of Sept. 11 commemorations, Mr. Bloomberg honored shopkeepers and residents as well as the developers who have led the area’s revival.',
'lead_paragraph': 'Mayor Michael R. Bloomberg on Tuesday hailed the revival of Lower Manhattan over the decade since the terrorist attacks of Sept. 11 and said the rebuilding and growth of the area was a testament to American resilience.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Bloomberg Hails Lower Manhattan’s Revival Since 9/11',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'September 11 (2001)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'World Trade Center (NYC)',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'Bloomberg, Michael R',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Manhattan (NYC)',
'rank': 4,
'major': 'N'}],
'pub_date': '2011-09-06T17:04:44+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Kate Taylor',
'person': [{'firstname': 'Kate',
'middlename': None,
'lastname': 'Taylor',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/25277eb2-9150-5dca-8293-a7cd40436482',
'word_count': 521,
'uri': 'nyt://article/25277eb2-9150-5dca-8293-a7cd40436482'},
{'abstract': 'Fathers today are far more involved with their children than their counterparts four decades ago, but more fathers today also live apart from their kids, according to a new analysis of American dads.',
'web_url': 'https://well.blogs.nytimes.com/2011/06/17/a-dual-portrait-of-american-fatherhood/',
'snippet': 'Fathers today are far more involved with their children than their counterparts four decades ago, but more fathers today also live apart from their kids, according to a new analysis of American dads.',
'lead_paragraph': 'Fathers today are far more involved with their children than their counterparts four decades ago, but more fathers today also live apart from their kids, according to a new analysis of dads in the United States.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'A Dual Portrait of American Fatherhood',
'kicker': 'Well',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-06-17T22:27:35+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Tara Parker-Pope',
'person': [{'firstname': 'Tara',
'middlename': None,
'lastname': 'Parker-Pope',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/00f6ea93-1545-5e6a-9ad7-6f1697ad15ea',
'word_count': 516,
'uri': 'nyt://article/00f6ea93-1545-5e6a-9ad7-6f1697ad15ea'},
{'abstract': 'The state of Florida questioned a gay couple’s decision to adopt.',
'web_url': 'https://parenting.blogs.nytimes.com/2010/08/31/adoption-raising-questions/',
'snippet': 'The state of Florida questioned a gay couple’s decision to adopt.',
'lead_paragraph': 'Charles Perez is a former Miami news anchor, now living in Kansas. Scott Simon is the host of NPR’s Morning Edition. That the two men are journalists is one of the things they share in common, along with the fact that they both became parents when they adopted daughters — both under circumstances that some outsiders might question.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Adoption, Raising Questions',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-08-31T15:49:25+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/98da811d-4362-5b0a-b962-3b6488850a28',
'word_count': 583,
'uri': 'nyt://article/98da811d-4362-5b0a-b962-3b6488850a28'},
{'abstract': 'Like many others this viewer was wrong: the winner of “Project Runway” was Gretchen Jones, not the favorite, Mondo Guerra.',
'web_url': 'https://www.nytimes.com/2010/10/31/fashion/31Project.html',
'snippet': 'Like many others this viewer was wrong: the winner of “Project Runway” was Gretchen Jones, not the favorite, Mondo Guerra.',
'lead_paragraph': 'WELL, I was wrong. ',
'print_section': 'ST',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/31/fashion/PROJECT/PROJECT-jumbo.jpg',
'height': 1024,
'width': 682,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/31/fashion/PROJECT/PROJECT-popup.jpg',
'height': 500,
'width': 333,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/31/fashion/PROJECT/PROJECT-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/10/31/fashion/PROJECT/PROJECT-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/10/31/fashion/PROJECT/PROJECT-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'On ‘Project Runway,’ a Final Plot Twist',
'kicker': None,
'content_kicker': None,
'print_headline': '‘Runway’: A Final Plot Twist',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Reality Television',
'rank': 2,
'major': 'N'}],
'pub_date': '2010-10-29T19:49:07+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Stuart Emmrich',
'person': [{'firstname': 'Stuart',
'middlename': None,
'lastname': 'Emmrich',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/77919666-3628-5d59-a47f-49eaa36000ef',
'word_count': 557,
'uri': 'nyt://article/77919666-3628-5d59-a47f-49eaa36000ef'},
{'abstract': 'All the fashion news of the week that’s fit to reprint.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/02/05/chic-in-review-stealing-is-so-last-season/',
'snippet': 'All the fashion news of the week that’s fit to reprint.',
'lead_paragraph': 'All the fashion news of the week that’s fit to reprint.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Chic in Review | Stealing Is So Last Season',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-02-05T22:00:22+0000',
'document_type': 'article',
'news_desk': 'TStyle',
'section_name': 'T Magazine',
'byline': {'original': 'By Sarah Leon',
'person': [{'firstname': 'Sarah',
'middlename': None,
'lastname': 'Leon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/4bb6b090-485b-5bc5-bf12-4c42831d4c5d',
'word_count': 522,
'uri': 'nyt://article/4bb6b090-485b-5bc5-bf12-4c42831d4c5d'},
{'abstract': 'Rescue workers continued to dig bodies from the rubble of landslides and floods that left at least 179 dead in Guatemala, Honduras and El Salvador.',
'web_url': 'https://www.nytimes.com/2010/06/02/world/americas/02guatemala.html',
'snippet': 'Rescue workers continued to dig bodies from the rubble of landslides and floods that left at least 179 dead in Guatemala, Honduras and El Salvador.',
'lead_paragraph': 'GRANADA, Nicaragua \x97 Victims of the first tropical storm of the region’s hurricane season began returning to their storm-battered homes in Guatemala on Tuesday because of a lack of emergency food and beds to house them, relief officials said.',
'print_section': 'A',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/02/world/GUATEMALA_337-span/GUATEMALA-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2010/06/02/world/GUATEMALA_337-span/GUATEMALA-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/02/world/GUATEMALA_337-span/GUATEMALA-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/02/world/GUATEMALA_337-span/GUATEMALA-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/02/world/GUATEMALA_337-span/GUATEMALA-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/02/world/GUATEMALA_337-span/GUATEMALA-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/06/02/world/GUATEMALA_337-span/GUATEMALA-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Guatemala Struggles to Recover After Storm',
'kicker': None,
'content_kicker': None,
'print_headline': 'Guatemala Struggles to Recover After Storm',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Floods',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Guatemala', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'Honduras', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'El Salvador', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Landslides and Mudslides',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Hurricanes and Tropical Storms',
'rank': 6,
'major': 'N'}],
'pub_date': '2010-06-02T02:16:31+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By Blake Schmidt',
'person': [{'firstname': 'Blake',
'middlename': None,
'lastname': 'Schmidt',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7819e229-ae89-50b1-a07f-1aab97fcce4a',
'word_count': 514,
'uri': 'nyt://article/7819e229-ae89-50b1-a07f-1aab97fcce4a'},
{'abstract': 'Arriving from Hungary, hundreds of determined migrants switched trains at the Westbahnhof rail station as they pressed on for Germany.',
'web_url': 'https://www.nytimes.com/2015/09/01/world/europe/in-vienna-trains-packed-with-migrants-are-welcomed-and-ushered-on.html',
'snippet': 'Arriving from Hungary, hundreds of determined migrants switched trains at the Westbahnhof rail station as they pressed on for Germany.',
'lead_paragraph': 'VIENNA — Six trains packed with migrants arrived on Monday at the Westbahnhof rail station in Vienna from Budapest and Hegyeshalom, a Hungarian village near the border with Austria.',
'print_section': 'A',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'In Vienna, Trains Packed With Refugees Are Welcomed and Ushered On',
'kicker': None,
'content_kicker': None,
'print_headline': 'Welcomed in Vienna, Then Guided to the Door',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Middle East and Africa Migrant Crisis',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Austria', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Germany', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Refugees and Displaced Persons',
'rank': 5,
'major': 'N'},
{'name': 'glocations',
'value': 'Vienna (Austria)',
'rank': 6,
'major': 'N'}],
'pub_date': '2015-08-31T22:40:52+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Rick Lyman',
'person': [{'firstname': 'Rick',
'middlename': None,
'lastname': 'Lyman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/87b987f9-ab76-543d-80ff-70ae4e292e49',
'word_count': 518,
'uri': 'nyt://article/87b987f9-ab76-543d-80ff-70ae4e292e49'},
{'abstract': 'The Obama administration and Congress must do better to assure that migrants who fear persecution are given careful consideration.',
'web_url': 'https://www.nytimes.com/2014/10/11/opinion/immigrants-from-central-america-need-legal-support.html',
'snippet': 'The Obama administration and Congress must do better to assure that migrants who fear persecution are given careful consideration.',
'lead_paragraph': 'The vast influx of young Central American migrants that overwhelmed southern Texas this summer has receded, and so has the panic at the border. But the emergency has not gone away; it has just moved on, out of view.',
'print_section': 'A',
'print_page': '22',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Border Crisis Isn’t Over',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'The Border Crisis Isn’t Over',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Illegal Immigration',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Central America',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Editorials', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Guatemala', 'rank': 5, 'major': 'N'},
{'name': 'glocations', 'value': 'Honduras', 'rank': 6, 'major': 'N'},
{'name': 'glocations', 'value': 'El Salvador', 'rank': 7, 'major': 'N'},
{'name': 'organizations',
'value': 'Border Patrol (US)',
'rank': 8,
'major': 'N'},
{'name': 'persons', 'value': 'Obama, Barack', 'rank': 9, 'major': 'N'},
{'name': 'organizations',
'value': 'Robin Hood Foundation',
'rank': 10,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Community Trust',
'rank': 11,
'major': 'N'}],
'pub_date': '2014-10-11T00:58:40+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/4c2d19b5-e7a4-51c8-be38-f5994be335df',
'word_count': 504,
'uri': 'nyt://article/4c2d19b5-e7a4-51c8-be38-f5994be335df'},
{'abstract': 'The Texas Legislature deeply cut spending for family planning, but increased funding for a conservative group called Alternatives to Abortion.',
'web_url': 'https://www.nytimes.com/2011/08/14/us/14ttpregnancy.html',
'snippet': 'The Texas Legislature deeply cut spending for family planning, but increased funding for a conservative group called Alternatives to Abortion.',
'lead_paragraph': 'Nearly 180,000 Texas women and men are likely to lose access to birth control and preventative examinations next month because the Legislature recently slashed financing for family planning services by two-thirds.',
'print_section': 'A',
'print_page': '21A',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/08/14/us/14TTPREGNANCY/14TTPREGNANCY-articleLarge.jpg',
'height': 350,
'width': 600,
'legacy': {'xlarge': 'images/2011/08/14/us/14TTPREGNANCY/14TTPREGNANCY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 350},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/08/14/us/14TTPREGNANCY/14TTPREGNANCY-blog480.jpg',
'height': 322,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/08/14/us/14TTPREGNANCY/14TTPREGNANCY-jumbo.jpg',
'height': 688,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/08/14/us/14TTPREGNANCY/14TTPREGNANCY-articleLarge.jpg',
'height': 350,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/08/14/us/14TTPREGNANCY/14TTPREGNANCY-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/08/14/us/14TTPREGNANCY/14TTPREGNANCY-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Center Typifies New Face of Pregnancy Services',
'kicker': 'The Texas Tribune',
'content_kicker': None,
'print_headline': 'Center Typifies New Face of Pregnancy Services',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Birth Control and Family Planning',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Budgets and Budgeting',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'State Legislatures',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Texas', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-08-13T22:55:59+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Thanh Tan',
'person': [{'firstname': 'Thanh',
'middlename': None,
'lastname': 'Tan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8277ea6f-40e1-5d12-8bde-c90b35a0d033',
'word_count': 532,
'uri': 'nyt://article/8277ea6f-40e1-5d12-8bde-c90b35a0d033'}],
[{'abstract': 'French philosopher Elisabeth Badinter argues that women are being shackled and tyrannized — by their own children.',
'web_url': 'https://parenting.blogs.nytimes.com/2010/03/23/are-mothers-oppressed-by-their-children/',
'snippet': 'French philosopher Elisabeth Badinter argues that women are being shackled and tyrannized — by their own children.',
'lead_paragraph': 'A profile of a French writer in a British newspaper yesterday is worth the attention of American mothers.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Are Mothers Oppressed by Their Children?',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-03-23T20:06:34+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/45e22b2c-71c6-5abb-bd6c-9e8c3326aba6',
'word_count': 559,
'uri': 'nyt://article/45e22b2c-71c6-5abb-bd6c-9e8c3326aba6'},
{'abstract': 'Jealousy is the overriding theme of Angelin Preljocaj’s “Snow White,” presented by his company at the Joyce Theater.',
'web_url': 'https://www.nytimes.com/2014/04/25/arts/dance/ballet-preljocajs-snow-white-at-the-joyce-theater.html',
'snippet': 'Jealousy is the overriding theme of Angelin Preljocaj’s “Snow White,” presented by his company at the Joyce Theater.',
'lead_paragraph': 'There’s a mirror on a wall and a stepmother who wants to look younger than her daughter. Is it just another day in the life of a dressing room at Forever 21, or Angelin Preljocaj’s version of “Snow White”?',
'print_section': 'C',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-articleLarge-v2.jpg',
'height': 833,
'width': 600,
'legacy': {'xlarge': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 833},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-blog480-v2.jpg',
'height': 667,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-blog427-v2.jpg',
'height': 593,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-tmagArticle-v2.jpg',
'height': 822,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-jumbo-v2.jpg',
'height': 1024,
'width': 738,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-blog225-v2.jpg',
'height': 313,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-master675-v2.jpg',
'height': 938,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-master180-v2.jpg',
'height': 250,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-popup-v2.jpg',
'height': 500,
'width': 360,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-blog533-v2.jpg',
'height': 740,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-tmagSF-v2.jpg',
'height': 503,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-slide-v2.jpg',
'height': 500,
'width': 360,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-superJumbo-v2.jpg',
'height': 2048,
'width': 1475,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-master1050-v2.jpg',
'height': 1458,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-master495-v2.jpg',
'height': 688,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-master315-v2.jpg',
'height': 438,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-articleInline-v2.jpg',
'height': 264,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-hpSmall-v2.jpg',
'height': 226,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-blogSmallInline-v2.jpg',
'height': 210,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-mediumFlexible177-v2.jpg',
'height': 246,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-hpLarge-v2.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-largeWidescreen573-v2.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/arts/25SUBJPSNOW/25SUBJPSNOW-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Trying to Outrun Age, in Spiky Heels',
'kicker': 'Dance Review',
'content_kicker': None,
'print_headline': 'Trying to Outrun Age, in Spiky Heels',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Dancing',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Ballet Preljocaj',
'rank': 3,
'major': 'N'},
{'name': 'creative_works',
'value': 'Snow White (Ballet)',
'rank': 4,
'major': 'N'}],
'pub_date': '2014-04-24T21:55:26+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Arts',
'subsection_name': 'Dance',
'byline': {'original': 'By Gia Kourlas',
'person': [{'firstname': 'Gia',
'middlename': None,
'lastname': 'Kourlas',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/f36575b1-c9cf-519a-a448-fbd9863ca5d9',
'word_count': 522,
'uri': 'nyt://article/f36575b1-c9cf-519a-a448-fbd9863ca5d9'},
{'abstract': 'A chemical attack, if proved, will require an aggressive response from the West.',
'web_url': 'https://www.nytimes.com/2013/08/23/opinion/the-corpses-in-syria.html',
'snippet': 'A chemical attack, if proved, will require an aggressive response from the West.',
'lead_paragraph': 'The lifeless bodies depicted in photos and videos from Syria over the past two days suggest another chemical attack, quite possibly the deadliest single attack in more than two years of civil war. If the killings of an estimated 500 to 1,000 men, women and children outside of Damascus prove to be the work of President Bashar al-Assad’s cutthroat regime, as many suspect, the United States and other major powers will almost certainly have to respond much more aggressively than they have so far. ',
'print_section': 'A',
'print_page': '26',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Corpses in Syria',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'The Corpses in Syria',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Biological and Chemical Warfare',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Free Syrian Army',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Assad, Bashar al-', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Syria', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Middle East and North Africa Unrest (2010- )',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'Obama, Barack', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'United States International Relations',
'rank': 7,
'major': 'N'},
{'name': 'subject', 'value': 'Editorials', 'rank': 8, 'major': 'N'}],
'pub_date': '2013-08-23T01:36:03+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/fe3ec1da-e240-5e4e-ac14-33992174caec',
'word_count': 539,
'uri': 'nyt://article/fe3ec1da-e240-5e4e-ac14-33992174caec'},
{'abstract': 'A clash at the Belarusian-Polish border.',
'web_url': 'https://www.nytimes.com/2021/11/17/briefing/belarus-migrants-pfizer-antiviral.html',
'snippet': 'A clash at the Belarusian-Polish border.',
'lead_paragraph': 'Hundreds of desperate and increasingly angry migrants, marooned at the border between Belarus and Poland, stampeded toward a frontier checkpoint yesterday, hurling stones and debris at Polish security personnel a few yards away.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-articleLarge-v3.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-articleLarge-v3.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-popup-v3.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-blog480-v3.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-blog533-v3.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-blog427-v3.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-tmagSF-v3.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-tmagArticle-v3.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-slide-v3.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-jumbo-v3.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-superJumbo-v3.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-blog225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-master1050-v3.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-master675-v3.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-master495-v3.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-master180-v3.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-master315-v3.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-master768-v3.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-square320-v5.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-square640-v5.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-sfSpan-v3.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-largeHorizontal375-v3.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-largeHorizontalJumbo-v3.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-horizontalMediumAt2X-v3.jpg',
'height': 4128,
'width': 6192,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-hpLarge-v3.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-largeWidescreen573-v3.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-largeWidescreen1050-v3.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-threeByTwoLargeAt2X-v3.jpg',
'height': 4128,
'width': 6192,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-threeByTwoMediumAt2X-v3.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-threeByTwoSmallAt2X-v3.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-articleInline-v3.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-hpSmall-v3.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-blogSmallInline-v3.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-mediumFlexible177-v3.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-videoFifteenBySeven2610-v3.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-top-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/multimedia/17ambriefing-europe-nl-promo/17ambriefing-europe-nl-promo-mobileMasterAt3x-v3.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Your Wednesday Briefing',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2021-11-17T05:56:03+0000',
'document_type': 'article',
'news_desk': 'NYTNow',
'section_name': 'Briefing',
'byline': {'original': 'By Natasha Frost',
'person': [{'firstname': 'Natasha',
'middlename': None,
'lastname': 'Frost',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'briefing',
'_id': 'nyt://article/3b1074a2-30c6-5ef8-970f-61163ebddcfc',
'word_count': 1291,
'uri': 'nyt://article/3b1074a2-30c6-5ef8-970f-61163ebddcfc'},
{'abstract': 'What the Xi-Biden meeting achieved.',
'web_url': 'https://www.nytimes.com/2021/11/16/briefing/us-china-summit-pfizer-covid-pill-khalilzad.html',
'snippet': 'What the Xi-Biden meeting achieved.',
'lead_paragraph': 'A virtual meeting between President Biden and China’s leader, Xi Jinping, produced no breakthroughs. The two leaders sought to keep the many disputes between their countries from escalating into a broader conflict.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-promo-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-promo-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-horizontalMediumAt2X.jpg',
'height': 5760,
'width': 8640,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-threeByTwoLargeAt2X.jpg',
'height': 5760,
'width': 8640,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/merlin_197918070_8cf6320d-b07d-4241-957d-fad16d0bdb7a-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/11/17/us/politics/17ambriefing-asia-nl-china-promo/17ambriefing-asia-nl-china-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Your Wednesday Briefing',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2021-11-16T20:59:17+0000',
'document_type': 'article',
'news_desk': 'NYTNow',
'section_name': 'Briefing',
'byline': {'original': 'By Melina Delkic',
'person': [{'firstname': 'Melina',
'middlename': None,
'lastname': 'Delkic',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'briefing',
'_id': 'nyt://article/0ac122ef-c41c-5d4f-b91c-79941a47da47',
'word_count': 1282,
'uri': 'nyt://article/0ac122ef-c41c-5d4f-b91c-79941a47da47'},
{'abstract': 'In the On Politics newsletter: Some candidates may be starting to realize time spent lingering at the bottom of the polls could come at a cost back home.',
'web_url': 'https://www.nytimes.com/2019/07/08/us/politics/on-politics-eric-swalwell.html',
'snippet': 'In the On Politics newsletter: Some candidates may be starting to realize time spent lingering at the bottom of the polls could come at a cost back home.',
'lead_paragraph': 'Hi. Welcome to On Politics, your guide to the day in national politics. I’m Lisa Lerer, your host.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-horizontalMediumAt2X.jpg',
'height': 3783,
'width': 5674,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-threeByTwoLargeAt2X.jpg',
'height': 3783,
'width': 5674,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/merlin_154293303_77fb8d27-32bf-450b-8fbb-6cebdef9f1b0-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/09/world/09onpolitics-promo/09onpolitics-promo-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Farewell, Swalwell: As One 2020 Democrat Drops Out, Will Others Follow?',
'kicker': 'On Politics With Lisa Lerer',
'content_kicker': None,
'print_headline': 'Evening Edition',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Swalwell, Eric M', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Democratic Party',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Booker, Cory A', 'rank': 5, 'major': 'N'}],
'pub_date': '2019-07-08T22:40:43+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Lisa Lerer',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Lerer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/fdd387a9-be72-5eca-9652-b4a772d3f2b6',
'word_count': 1215,
'uri': 'nyt://article/fdd387a9-be72-5eca-9652-b4a772d3f2b6'},
{'abstract': 'Disputes about medics, squat toilets and diaper-changing duties underscore longstanding tensions between residents of Hong Kong and the mainland.',
'web_url': 'https://www.nytimes.com/2022/03/31/world/asia/hong-kong-china-covid.html',
'snippet': 'Disputes about medics, squat toilets and diaper-changing duties underscore longstanding tensions between residents of Hong Kong and the mainland.',
'lead_paragraph': 'HONG KONG — Soon after Omicron overwhelmed Hong Kong’s health care system in a deadly outbreak, Beijing rushed to help. Contractors from mainland China built vast isolation facilities. The central government sent more than 1,000 medical workers to staff treatment and testing centers, as well as butchers to help stabilize the local meat supply.',
'print_section': 'A',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-horizontalMediumAt2X.jpg',
'height': 3953,
'width': 5929,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-threeByTwoLargeAt2X.jpg',
'height': 3953,
'width': 5929,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/merlin_204739446_9102d874-f313-4531-8d9d-38e21f8d341c-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/30/world/00virus-hongkong-01/00virus-hongkong-01-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'In Hong Kong, China’s Covid Aid Gets the Cold Shoulder',
'kicker': None,
'content_kicker': None,
'print_headline': 'Some in Hong Kong Give Covid Help From Mainland China a Cold Shoulder',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Hong Kong', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'China', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Nursing and Nurses',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Hospitals', 'rank': 6, 'major': 'N'},
{'name': 'persons',
'value': 'Lam, Carrie (1957- )',
'rank': 7,
'major': 'N'},
{'name': 'glocations',
'value': 'Beijing (China)',
'rank': 8,
'major': 'N'}],
'pub_date': '2022-03-31T07:26:34+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Joy Dong and Austin Ramzy',
'person': [{'firstname': 'Joy',
'middlename': None,
'lastname': 'Dong',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Austin',
'middlename': None,
'lastname': 'Ramzy',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7ed5e3df-daff-50b2-86e3-93aa89a32334',
'word_count': 1180,
'uri': 'nyt://article/7ed5e3df-daff-50b2-86e3-93aa89a32334'},
{'abstract': 'Parents and children have questions, but there is surprisingly little guidance available in the pediatric literature.',
'web_url': 'https://www.nytimes.com/2018/12/10/well/family/why-is-childrens-masturbation-such-a-secret.html',
'snippet': 'Parents and children have questions, but there is surprisingly little guidance available in the pediatric literature.',
'lead_paragraph': 'I first came across the word, naturally, by reading ahead of my grade level; at age 10, I was ostentatiously reading my father’s copy of Margaret Mead’s “Coming of Age in Samoa,” the book that had convinced him to become an anthropologist. I asked my mother, what is masturbation? And I remember her answer: “Touching yourself for sexual pleasure,” she said, neutral and nonjudgmental like the English professor she was.',
'print_section': 'D',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-superJumbo.jpg',
'height': 836,
'width': 1254,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-horizontalMediumAt2X.jpg',
'height': 836,
'width': 1254,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-threeByTwoLargeAt2X.jpg',
'height': 836,
'width': 1254,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-threeByTwoMediumAt2X.jpg',
'height': 836,
'width': 1254,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-videoSixteenByNineJumbo1600.jpg',
'height': 706,
'width': 1254,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/18/well/family/10klassdoor/10klassdoor-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'}],
'headline': {'main': 'Why Is Children’s Masturbation Such a Secret?',
'kicker': None,
'content_kicker': None,
'print_headline': '‘This Really Is a Normal Thing’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Childhood',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Sex', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Teenagers and Adolescence',
'rank': 4,
'major': 'N'}],
'pub_date': '2018-12-10T10:00:06+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'subsection_name': 'Family',
'byline': {'original': 'By Perri Klass, M.D',
'person': [{'firstname': 'Perri',
'middlename': None,
'lastname': 'Klass',
'qualifier': 'M.D',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d4ccebb6-1564-56b6-8097-01a3b4119b95',
'word_count': 1331,
'uri': 'nyt://article/d4ccebb6-1564-56b6-8097-01a3b4119b95'},
{'abstract': 'Practical suggestions for women dealing with the surprising things that happen to their bodies in the first months after childbirth.',
'web_url': 'https://www.nytimes.com/2018/07/11/well/a-survival-guide-for-the-fourth-trimester.html',
'snippet': 'Practical suggestions for women dealing with the surprising things that happen to their bodies in the first months after childbirth.',
'lead_paragraph': 'After 24 hours of labor, I thought the hard part was over.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-articleLarge.jpg',
'height': 900,
'width': 600,
'legacy': {'xlarge': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 900},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-popup.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-blog480.jpg',
'height': 720,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-blog533.jpg',
'height': 800,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-blog427.jpg',
'height': 641,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-tmagSF.jpg',
'height': 543,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-tmagArticle.jpg',
'height': 888,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-slide.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-jumbo.jpg',
'height': 1024,
'width': 683,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-superJumbo.jpg',
'height': 2048,
'width': 1366,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-blog225.jpg',
'height': 338,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-master1050.jpg',
'height': 1575,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-master675.jpg',
'height': 1013,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-master495.jpg',
'height': 743,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-master180.jpg',
'height': 270,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-master315.jpg',
'height': 473,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-master768.jpg',
'height': 1152,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-largeHorizontalJumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-horizontalMediumAt2X-v2.jpg',
'height': 2399,
'width': 3600,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-threeByTwoLargeAt2X-v2.jpg',
'height': 2399,
'width': 3600,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-hpSmall.jpg',
'height': 245,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-blogSmallInline.jpg',
'height': 227,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/merlin_140486211_cc649dec-947e-453d-a190-e54d0e122141-mediumFlexible177.jpg',
'height': 266,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/29/autossell/00Well_postpartum/00Well_postpartum-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'A Survival Guide for the Fourth Trimester',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Caesarean Section', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 6, 'major': 'N'}],
'pub_date': '2018-07-11T09:00:01+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'byline': {'original': 'By Christina Caron',
'person': [{'firstname': 'Christina',
'middlename': None,
'lastname': 'Caron',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/15c94786-256d-56ac-93d0-f7891261e9f7',
'word_count': 1248,
'uri': 'nyt://article/15c94786-256d-56ac-93d0-f7891261e9f7'},
{'abstract': 'It’s still diaper-changing and storybooks, so why does it feel so different from raising our own kids?',
'web_url': 'https://www.nytimes.com/2018/06/27/well/the-joy-of-grandparenting.html',
'snippet': 'It’s still diaper-changing and storybooks, so why does it feel so different from raising our own kids?',
'lead_paragraph': 'Thursdays, when I’m the day care provider for my toddler granddaughter in Brooklyn, usually unfold fairly routinely: books, Legos, songs, meals, naps, walks to the park.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-articleLarge-v2.jpg',
'height': 398,
'width': 600,
'legacy': {'xlarge': 'images/2018/06/14/well/span-time/span-time-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 398},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-popup-v2.jpg',
'height': 431,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-blog480-v2.jpg',
'height': 319,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-blog533-v2.jpg',
'height': 354,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-blog427-v2.jpg',
'height': 283,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-tmagSF-v2.jpg',
'height': 240,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-tmagArticle-v2.jpg',
'height': 393,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-slide-v2.jpg',
'height': 398,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-jumbo-v2.jpg',
'height': 680,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-superJumbo-v2.jpg',
'height': 1360,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-blog225-v2.jpg',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-master1050-v2.jpg',
'height': 697,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-master675-v2.jpg',
'height': 448,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-master495-v2.jpg',
'height': 329,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-master180-v2.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-master315-v2.jpg',
'height': 209,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-master768-v2.jpg',
'height': 510,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/06/14/well/span-time/span-time-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-horizontalMediumAt2X-v2.jpg',
'height': 2274,
'width': 3409,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/06/14/well/span-time/span-time-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-threeByTwoLargeAt2X.jpg',
'height': 2405,
'width': 3605,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-articleInline-v2.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-hpSmall-v2.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-blogSmallInline-v2.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/14/well/span-time/span-time-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'The Joy of Grandparenting',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Grandparents',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Child Care', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 6,
'major': 'N'}],
'pub_date': '2018-06-27T09:00:06+0000',
'document_type': 'article',
'news_desk': 'Well',
'section_name': 'Well',
'byline': {'original': 'By Paula Span',
'person': [{'firstname': 'Paula',
'middlename': None,
'lastname': 'Span',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7da013f3-f8c9-5d14-8ae8-77d97b94cefd',
'word_count': 1132,
'uri': 'nyt://article/7da013f3-f8c9-5d14-8ae8-77d97b94cefd'}],
[{'abstract': 'The internet is great at rooting out and freeze-framing interpersonal drama. It has become downright masterful during the Trump era, our critic writes.',
'web_url': 'https://www.nytimes.com/2019/02/20/magazine/pelosi-trump-and-the-spectacle-of-red-meat-politics.html',
'snippet': 'The internet is great at rooting out and freeze-framing interpersonal drama. It has become downright masterful during the Trump era, our critic writes.',
'lead_paragraph': 'It should go without saying that our national health relies on a grown-up relationship between the president and the speaker of the House. But Donald Trump and Nancy Pelosi are more like the Wile E. Coyote and Road Runner of American politics, our Karen and Jack, our Alexis Carrington and Dominique Deveraux, our Ren and Stimpy. She has been speaker for roughly two months of his presidency, but it’s as if they’ve been on the Cartoon Network for 20 years. He tries to drop an anvil on her. She lures him over a cliff. We care about the nation’s health, but we seem to enjoy the anvil business even more.',
'print_section': 'MM',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-articleLarge-v5.gif',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2019/02/24/magazine/24screenland1/24screenland1-articleLarge-v5.gif',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-popup-v4.png',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-blog480-v4.png',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-blog533-v4.png',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-blog427-v4.png',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-tmagSF-v4.png',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-tmagArticle-v4.png',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-slide-v4.png',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-jumbo-v5.gif',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-superJumbo-v5.gif',
'height': 1466,
'width': 1465,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-blog225-v4.png',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-master1050-v4.png',
'height': 1051,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-master675-v4.png',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-master495-v4.png',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-master180-v4.png',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-master315-v4.png',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-master768-v4.png',
'height': 769,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-thumbStandard-v4.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/02/24/magazine/24screenland1/24screenland1-thumbStandard-v4.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-blogSmallThumb-v4.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-thumbLarge-v4.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-smallSquare168-v4.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-smallSquare252-v4.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-square320-v4.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-moth-v4.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-filmstrip-v4.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-square640-v5.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-mediumSquare149-v4.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-sfSpan-v5.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-largeHorizontal375-v5.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-largeHorizontalJumbo-v5.png',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-horizontalMediumAt2X-v5.png',
'height': 977,
'width': 1465,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-hpLarge-v5.png',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-largeWidescreen573-v5.png',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-largeWidescreen1050-v5.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-thumbWide-v5.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/02/24/magazine/24screenland1/24screenland1-thumbWide-v5.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoThumb-v5.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoLarge-v5.gif',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-mediumThreeByTwo210-v5.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-mediumThreeByTwo225-v5.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-mediumThreeByTwo440-v5.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-mediumThreeByTwo252-v5.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-mediumThreeByTwo378-v5.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-threeByTwoLargeAt2X-v5.png',
'height': 977,
'width': 1465,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-threeByTwoMediumAt2X-v5.png',
'height': 977,
'width': 1465,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-threeByTwoSmallAt2X-v5.png',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-articleInline-v4.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-hpSmall-v4.png',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-blogSmallInline-v4.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-mediumFlexible177-v4.png',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSmall-v5.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoHpMedium-v5.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine600-v5.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine540-v5.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine495-v5.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine390-v5.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine1050-v5.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine480-v5.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine310-v5.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine225-v5.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine96-v5.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine768-v5.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNine150-v5.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoSixteenByNineJumbo1600-v5.png',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-miniMoth-v5.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-windowsTile336H-v5.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-videoFifteenBySeven1305-v5.png',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-facebookJumbo-v5.png',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-watch308-v5.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-watch268-v5.png',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/24/magazine/24screenland1/24screenland1-verticalTwoByThree735-v5.png',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'The Meaning of the Scene: When Pelosi Clapped at Trump',
'kicker': 'Screenland',
'content_kicker': None,
'print_headline': 'Manual Labor',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Pelosi, Nancy', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'House of Representatives',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Democratic Party',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'State of the Union Message (US)',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-02-20T10:00:10+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Wesley Morris',
'person': [{'firstname': 'Wesley',
'middlename': None,
'lastname': 'Morris',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/b2d80af5-6e57-5a3f-a132-d70d8fc442a1',
'word_count': 1195,
'uri': 'nyt://article/b2d80af5-6e57-5a3f-a132-d70d8fc442a1'},
{'abstract': 'The country plans to immunize its entire population after an outbreak that killed 104 people and left 201 paralyzed.',
'web_url': 'https://www.nytimes.com/2010/11/10/world/africa/10polio.html',
'snippet': 'The country plans to immunize its entire population after an outbreak that killed 104 people and left 201 paralyzed.',
'lead_paragraph': 'An explosive outbreak of polio is taking place in the Congo Republic, with 201 cases of paralysis found in two weeks and 104 deaths, the World Health Organization said Tuesday.',
'print_section': 'A',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/10/world/10POLIO/10POLIO-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/10/world/10POLIO/10POLIO-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/10/world/10POLIO/10POLIO-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/10/world/10POLIO/10POLIO-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'}],
'headline': {'main': 'Congo Republic Declares a Polio Emergency',
'kicker': None,
'content_kicker': None,
'print_headline': 'Congo Republic Declares a Polio Emergency',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Poliomyelitis',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Congo, Republic of (Congo-Brazzaville)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Vaccination and Immunization',
'rank': 3,
'major': 'N'}],
'pub_date': '2010-11-10T02:27:33+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Africa',
'byline': {'original': 'By Donald G. McNeil Jr',
'person': [{'firstname': 'Donald',
'middlename': 'G.',
'lastname': 'McNeil',
'qualifier': 'Jr',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ec29ebbf-32c4-5e63-833e-2566990e86e9',
'word_count': 529,
'uri': 'nyt://article/ec29ebbf-32c4-5e63-833e-2566990e86e9'},
{'abstract': 'Lacking social services, few women return to the work force after having children. Yet politicians have focused proposals on immigration and security.',
'web_url': 'https://www.nytimes.com/2018/03/03/world/europe/italy-election-childcare-women.html',
'snippet': 'Lacking social services, few women return to the work force after having children. Yet politicians have focused proposals on immigration and security.',
'lead_paragraph': 'ROME — Like many working mothers in Italy, Francesca Roncetti constructed her life around a frantic, daily juggle that became more frenzied after her second child was born.',
'print_section': 'A',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-thumbStandard-v4.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/03/04/world/europe/04women-01p/04women-01p-thumbStandard-v4.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-blogSmallThumb-v4.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-thumbLarge-v4.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-smallSquare168-v4.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-smallSquare252-v4.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-horizontalMediumAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-threeByTwoLargeAt2X.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/merlin_134750826_d5fb1168-6bcc-44c8-95cb-897dffa0a33f-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSmall-v4.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoHpMedium-v4.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine600-v4.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine540-v4.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine495-v4.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine390-v4.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine1050-v4.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine480-v4.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine310-v4.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine225-v4.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine96-v4.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine3000-v4.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine768-v4.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNine150-v4.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-videoSixteenByNineJumbo1600-v4.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/04women-01p-facebookJumbo-v4.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/04/world/europe/04women-01p/xxwomen1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Women Could Decide Italy’s Election, but They Feel Invisible',
'kicker': None,
'content_kicker': None,
'print_headline': 'Italy’s Election Could Be Decided by Voters Who Feel Invisible: Women',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Work-Life Balance',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Child Care', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Five Star Movement (Italy)',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Forza Italia',
'rank': 6,
'major': 'N'},
{'name': 'persons',
'value': 'Berlusconi, Silvio',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Renzi, Matteo', 'rank': 8, 'major': 'N'},
{'name': 'glocations', 'value': 'Italy', 'rank': 9, 'major': 'N'},
{'name': 'glocations', 'value': 'Milan (Italy)', 'rank': 10, 'major': 'N'},
{'name': 'glocations', 'value': 'Rome (Italy)', 'rank': 11, 'major': 'N'}],
'pub_date': '2018-03-03T23:28:54+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Gaia Pianigiani',
'person': [{'firstname': 'Gaia',
'middlename': None,
'lastname': 'Pianigiani',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c9d56256-679b-5924-93d8-eb757b3ccf3b',
'word_count': 1195,
'uri': 'nyt://article/c9d56256-679b-5924-93d8-eb757b3ccf3b'},
{'abstract': 'Researchers are telling mothers to relax',
'web_url': 'https://parenting.blogs.nytimes.com/2010/08/03/working-moms-are-fine-for-kids/',
'snippet': 'Researchers are telling mothers to relax',
'lead_paragraph': 'Eight years ago, researchers at Columbia University worried a lot of new parents when they concluded that children whose mothers left home for full-time work in the first year of life were cognitively delayed compared with one-year-olds whose mothers stayed home. (No, the study did not measure the effect of working fathers.)',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Working Moms Are Fine for Kids',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-08-03T20:47:38+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Magazine',
'byline': {'original': 'By Lisa Belkin',
'person': [{'firstname': 'Lisa',
'middlename': None,
'lastname': 'Belkin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/81f11f4b-2d18-5485-9b5c-1dc4d60b053d',
'word_count': 567,
'uri': 'nyt://article/81f11f4b-2d18-5485-9b5c-1dc4d60b053d'},
{'abstract': 'New studies show caregivers with young children are stressed, with no signs of relief on the horizon.',
'web_url': 'https://www.nytimes.com/2020/09/09/parenting/mental-health-parents-coronavirus.html',
'snippet': 'New studies show caregivers with young children are stressed, with no signs of relief on the horizon.',
'lead_paragraph': 'Paige Posladek is pregnant, and stressed. She has two children, ages 2 and 4, works part time as a copywriter, and has seen a therapist on and off for several years to help her deal with the loneliness and loss of identity that can come with being a new mom.',
'print_section': 'B',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-superJumbo.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumSquareAt3X.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-horizontalMediumAt2X.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-threeByTwoLargeAt2X.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoHpMedium-v3.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine600-v3.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine540-v3.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine495-v3.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine390-v3.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine480-v3.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine310-v3.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine225-v3.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine96-v3.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine768-v3.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNine150-v3.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoSixteenByNineJumbo1600-v3.jpg',
'height': 486,
'width': 864,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/09/14/multimedia/9parenting-nl-mental-health/9parenting-nl-mental-health-mobileMasterAt3x.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'The Pandemic Is a ‘Mental Health Crisis’ for Parents',
'kicker': None,
'content_kicker': None,
'print_headline': 'Little Ones Are Comforting Stressed Out Parents: So Snuggle',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Anxiety and Stress',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Mental Health and Disorders',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'Therapy and Rehabilitation',
'rank': 8,
'major': 'N'}],
'pub_date': '2020-09-09T10:30:04+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/39873b6b-96da-5d78-93b6-9191313bba3e',
'word_count': 1242,
'uri': 'nyt://article/39873b6b-96da-5d78-93b6-9191313bba3e'},
{'abstract': 'Flying with children is like “Survivor” at 36,000 feet. Some expert tips on how to manage the madness.',
'web_url': 'https://www.nytimes.com/2011/11/06/travel/flying-with-children-the-bad-and-the-worse.html',
'snippet': 'Flying with children is like “Survivor” at 36,000 feet. Some expert tips on how to manage the madness.',
'lead_paragraph': 'SURELY they could spare a little milk, right?',
'print_section': 'TR',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/06/travel/06FAMILY1/06FAMILY-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2011/11/06/travel/06FAMILY1/06FAMILY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/06/travel/06FAMILY1/06FAMILY-jumbo.jpg',
'height': 980,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/06/travel/06FAMILY1/06FAMILY-popup.jpg',
'height': 622,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/06/travel/06FAMILY1/06FAMILY-articleInline.jpg',
'height': 182,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/06/travel/06FAMILY1/06FAMILY-sfSpan.jpg',
'height': 260,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/11/06/travel/06FAMILY1/06FAMILY1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/11/06/travel/06FAMILY1/06FAMILY1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Are We There Yet? When Families Fly',
'kicker': None,
'content_kicker': None,
'print_headline': 'Are We There Yet?',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Families and Family Life',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Customer Relations',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Flight Attendants', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 7,
'major': 'N'}],
'pub_date': '2011-11-04T18:29:33+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Michelle Higgins',
'person': [{'firstname': 'Michelle',
'middlename': None,
'lastname': 'Higgins',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d911927c-0cc3-5baa-a7eb-653fabfbc05a',
'word_count': 4078,
'uri': 'nyt://article/d911927c-0cc3-5baa-a7eb-653fabfbc05a'},
{'abstract': 'Women’s combat sports have been on a good run in the United States, but sumo wrestling is still waiting to take off.',
'web_url': 'https://www.nytimes.com/2014/06/30/sports/as-sumo-wrestling-grows-in-us-its-mostly-men-on-the-mats.html',
'snippet': 'Women’s combat sports have been on a good run in the United States, but sumo wrestling is still waiting to take off.',
'lead_paragraph': 'JACKSON HOLE, Wyo. — Tiffany Tran stands 5 feet 1 inch tall and weighs 166 pounds. She is a vegetarian studying for a master’s in biology. She is also a sumo wrestler. ',
'print_section': 'D',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-articleLarge.jpg',
'height': 480,
'width': 600,
'legacy': {'xlarge': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 480},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-blog480.jpg',
'height': 384,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-blog427.jpg',
'height': 342,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-tmagArticle.jpg',
'height': 474,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-jumbo.jpg',
'height': 819,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-blog225.jpg',
'height': 180,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-master675.jpg',
'height': 540,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-master180.jpg',
'height': 144,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-popup.jpg',
'height': 500,
'width': 625,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-blog533.jpg',
'height': 426,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-tmagSF.jpg',
'height': 290,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-slide.jpg',
'height': 480,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-superJumbo.jpg',
'height': 1638,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-master1050.jpg',
'height': 840,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-master495.jpg',
'height': 396,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-master315.jpg',
'height': 252,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-articleInline.jpg',
'height': 152,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-hpSmall.jpg',
'height': 130,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-blogSmallInline.jpg',
'height': 121,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-mediumFlexible177.jpg',
'height': 142,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/06/30/sports/SUMO-slide-WGP9/SUMO-slide-WGP9-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Ancient Sport Grows, but Not to U.S. Women',
'kicker': None,
'content_kicker': None,
'print_headline': 'Ancient Sport Grows, but Not to U.S. Women',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Sumo Wrestling',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 3, 'major': 'N'}],
'pub_date': '2014-06-30T01:06:00+0000',
'document_type': 'article',
'news_desk': 'Sports',
'section_name': 'Sports',
'byline': {'original': 'By Mary Pilon',
'person': [{'firstname': 'Mary',
'middlename': None,
'lastname': 'Pilon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/548922ba-9317-5bbf-9dea-740925582040',
'word_count': 1243,
'uri': 'nyt://article/548922ba-9317-5bbf-9dea-740925582040'},
{'abstract': 'Get help from skilled medical professionals, and let go of an “all-or-nothing” mentality.',
'web_url': 'https://www.nytimes.com/article/increase-breastmilk-supply.html',
'snippet': 'Get help from skilled medical professionals, and let go of an “all-or-nothing” mentality.',
'lead_paragraph': 'This guide was originally published on May 3, 2019 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-articleLarge.jpg',
'height': 643,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 643},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-popup.jpg',
'height': 500,
'width': 467,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-blog480.jpg',
'height': 514,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-blog533.jpg',
'height': 571,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-blog427.jpg',
'height': 457,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-tmagSF.jpg',
'height': 388,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-tmagArticle.jpg',
'height': 634,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-slide.jpg',
'height': 500,
'width': 467,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-jumbo.jpg',
'height': 1024,
'width': 956,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-superJumbo.jpg',
'height': 1385,
'width': 1293,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-blog225.jpg',
'height': 241,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-master1050.jpg',
'height': 1125,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-master675.jpg',
'height': 723,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-master495.jpg',
'height': 530,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-master180.jpg',
'height': 193,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-master315.jpg',
'height': 337,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-master768.jpg',
'height': 823,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-horizontalMediumAt2X-v2.jpg',
'height': 862,
'width': 1293,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-threeByTwoLargeAt2X-v2.jpg',
'height': 862,
'width': 1293,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-threeByTwoMediumAt2X-v2.jpg',
'height': 862,
'width': 1293,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-articleInline.jpg',
'height': 204,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-hpSmall.jpg',
'height': 175,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-blogSmallInline.jpg',
'height': 162,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-mediumFlexible177.jpg',
'height': 190,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-videoSixteenByNineJumbo1600-v2.jpg',
'height': 727,
'width': 1293,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/06-parenting-low-breastmilk/06-parenting-low-breastmilk-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How to Deal with Low Breastmilk Supply',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Breastfeeding',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Infant Formulas', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Pregnancy and Childbirth',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 6, 'major': 'N'}],
'pub_date': '2020-04-17T21:12:50+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Guides',
'byline': {'original': 'By Susan Reslewic Keatley',
'person': [{'firstname': 'Susan',
'middlename': 'Reslewic',
'lastname': 'Keatley',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c33713b1-8767-571c-b032-0f5ecfd05192',
'word_count': 1962,
'uri': 'nyt://article/c33713b1-8767-571c-b032-0f5ecfd05192'},
{'abstract': 'These are the products you actually need for a newborn',
'web_url': 'https://www.nytimes.com/2020/04/17/parenting/baby-registry.html',
'snippet': 'These are the products you actually need for a newborn',
'lead_paragraph': 'This story was originally published on May 2, 2019 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-articleLarge.gif',
'height': 588,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-articleLarge.gif',
'xlargewidth': 600,
'xlargeheight': 588},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-jumbo.gif',
'height': 1004,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-superJumbo.gif',
'height': 2008,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-master675.gif',
'height': 662,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-master768.gif',
'height': 753,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-horizontalMediumAt2X.jpg',
'height': 1666,
'width': 2500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-threeByTwoLargeAt2X.jpg',
'height': 1666,
'width': 2500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/06/parenting/00-Parenting-Registry/00-Parenting-Registry-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'The Real Talk Version of Your Baby Registry',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Gifts', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'}],
'pub_date': '2020-04-17T15:10:14+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Emily Gould',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Gould',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/03a0ad90-9551-5dff-acb5-b543e327ceec',
'word_count': 2024,
'uri': 'nyt://article/03a0ad90-9551-5dff-acb5-b543e327ceec'},
{'abstract': 'Older siblings react to the arrival of new babies — in a picture book, a chapter book, an early reader and a middle grade novel.',
'web_url': 'https://www.nytimes.com/2022/08/05/books/review/rhett-miller-dan-santat-the-baby-changing-station-patricia-maclachlan-my-life-begins.html',
'snippet': 'Older siblings react to the arrival of new babies — in a picture book, a chapter book, an early reader and a middle grade novel.',
'lead_paragraph': 'I recently asked my sister about my birth; she was 4, my brother was 2. She mentioned that Mom bought them gifts and declared they were from me, the newborn. “What were the gifts?” I asked her. “The milk bottles, Abby!” she shouted into the phone as if this should be self-evident. I gasped. “The milk bottles?” No toy had more versatility or longevity in our universe. She described her conviction that I, like a “good houseguest,” had entered her life bearing those six plastic Fisher-Price bottles with multicolored tops, nestled in a yellow carrying case.\xa0“But when did you question this?” I asked her. “I never did,” she said unequivocally.\xa0How nice to begin the longest relationship many of us are fortunate enough to have on the right foot!\xa0',
'print_section': 'BR',
'print_page': '22',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-articleLarge.jpg',
'height': 452,
'width': 600,
'legacy': {'xlarge': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 452},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-popup.jpg',
'height': 489,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-blog480.jpg',
'height': 361,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-blog533.jpg',
'height': 401,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-blog427.jpg',
'height': 322,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-tmagSF.jpg',
'height': 273,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-tmagArticle.jpg',
'height': 446,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-slide.jpg',
'height': 452,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-jumbo.jpg',
'height': 744,
'width': 988,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-superJumbo.jpg',
'height': 744,
'width': 988,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-blog225.jpg',
'height': 169,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-master675.jpg',
'height': 508,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-master495.jpg',
'height': 373,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-master180.jpg',
'height': 136,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-master315.jpg',
'height': 237,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-master768.jpg',
'height': 578,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumSquareAt3X.jpg',
'height': 744,
'width': 744,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-largeHorizontalJumbo.jpg',
'height': 659,
'width': 988,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-horizontalMediumAt2X.jpg',
'height': 659,
'width': 988,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-threeByTwoLargeAt2X.jpg',
'height': 658,
'width': 988,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-threeByTwoMediumAt2X.jpg',
'height': 658,
'width': 988,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-articleInline.jpg',
'height': 143,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-hpSmall.jpg',
'height': 123,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-blogSmallInline.jpg',
'height': 114,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mediumFlexible177.jpg',
'height': 133,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-videoSixteenByNineJumbo1600.jpg',
'height': 555,
'width': 988,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-facebookJumbo.jpg',
'height': 517,
'width': 988,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/05/books/05KIDS-BABYCHANGINGSTATION/05KIDS-BABYCHANGINGSTATION-mobileMasterAt3x.jpg',
'height': 744,
'width': 988,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'But I Wanted a Puppy!',
'kicker': 'Children’s Books',
'content_kicker': None,
'print_headline': '‘I Wanted a Puppy’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'Miller, Rhett (1970- )',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Santat, Dan', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'MacLachlan, Patricia',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'Miyares, Daniel', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Ito, Hiroshi', 'rank': 8, 'major': 'N'},
{'name': 'creative_works',
'value': 'Free Kid to Good Home (Book)',
'rank': 9,
'major': 'N'},
{'name': 'creative_works',
'value': 'Bumpfizzle the Best on Planet Earth (Book)',
'rank': 10,
'major': 'N'},
{'name': 'persons', 'value': 'Forde, Patricia', 'rank': 11, 'major': 'N'},
{'name': 'persons', 'value': 'Braslina, Elina', 'rank': 12, 'major': 'N'},
{'name': 'creative_works',
'value': 'The Baby-Changing Station (Book)',
'rank': 13,
'major': 'N'},
{'name': 'creative_works',
'value': 'My Life Begins! (Book)',
'rank': 14,
'major': 'N'},
{'name': 'subject',
'value': 'genre-books-childrens',
'rank': 15,
'major': 'N'}],
'pub_date': '2022-08-05T04:06:46+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Abby Hanlon',
'person': [{'firstname': 'Abby',
'middlename': None,
'lastname': 'Hanlon',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/5c3badd3-ffc8-552d-903f-90b62224818e',
'word_count': 1125,
'uri': 'nyt://article/5c3badd3-ffc8-552d-903f-90b62224818e'}],
[{'abstract': 'Turkey’s veteran leader played an aggressive hand abroad, but as the country’s economy plummets, he is feeling ire at home as many Turks struggle to buy food.',
'web_url': 'https://www.nytimes.com/2020/12/27/world/europe/turkey-erdogan-economy.html',
'snippet': 'Turkey’s veteran leader played an aggressive hand abroad, but as the country’s economy plummets, he is feeling ire at home as many Turks struggle to buy food.',
'lead_paragraph': 'ISTANBUL — Hobbled by restrictions on his tobacco shop, Ozgur Aybas helped organize a demonstration in Istanbul last month to protest what he called unfair rules imposed on merchants during the pandemic.',
'print_section': 'A',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-articleLarge.jpg',
'height': 414,
'width': 600,
'legacy': {'xlarge': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 414},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-popup.jpg',
'height': 448,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-blog480.jpg',
'height': 331,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-blog533.jpg',
'height': 368,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-blog427.jpg',
'height': 295,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-tmagSF.jpg',
'height': 250,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-tmagArticle.jpg',
'height': 408,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-slide.jpg',
'height': 414,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-jumbo.jpg',
'height': 706,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-superJumbo.jpg',
'height': 1413,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-blog225.jpg',
'height': 155,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-master1050.jpg',
'height': 724,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-master675.jpg',
'height': 466,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-master495.jpg',
'height': 341,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-master180.jpg',
'height': 124,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-master315.jpg',
'height': 217,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-master768.jpg',
'height': 530,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-horizontalMediumAt2X.jpg',
'height': 2935,
'width': 4406,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-threeByTwoLargeAt2X.jpg',
'height': 2935,
'width': 4406,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-articleInline.jpg',
'height': 131,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-hpSmall.jpg',
'height': 112,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-blogSmallInline.jpg',
'height': 104,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/merlin_180980949_73c9c97f-ab12-44e5-aba9-065ebc685b94-mediumFlexible177.jpg',
'height': 122,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine3000-v2.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-facebookJumbo-v2.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/12/26/world/26erdogan-5/26erdogan-5-mobileMasterAt3x-v2.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Battered Turkish Economy Puts a Powerful Erdogan to the Test',
'kicker': None,
'content_kicker': None,
'print_headline': 'Turks’ Economic Pain Tests Erdogan’s Power',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'European Council on Foreign Relations',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Justice and Development Party (Turkey)',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Nationalist Movement Party (Turkey)',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Erdogan, Recep Tayyip',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'Turkey', 'rank': 6, 'major': 'N'}],
'pub_date': '2020-12-27T17:18:42+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Carlotta Gall',
'person': [{'firstname': 'Carlotta',
'middlename': None,
'lastname': 'Gall',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7ccd5189-caf1-5f89-9b5c-d2da2bbc35de',
'word_count': 1175,
'uri': 'nyt://article/7ccd5189-caf1-5f89-9b5c-d2da2bbc35de'},
{'abstract': 'I was my son’s only parent and our bond was strong. Now, I’m worried my daughter and I won’t have that connection.',
'web_url': 'https://www.nytimes.com/2020/10/28/parenting/single-parent-child-bond.html',
'snippet': 'I was my son’s only parent and our bond was strong. Now, I’m worried my daughter and I won’t have that connection.',
'lead_paragraph': 'It’s been almost eight months now, and my daughter and I still don’t have our song. Her older brother, Sam, and I have an album’s worth. I crooned a rotating playlist of off-pitch lullabies — “American Girl,” “Sweet Baby James,” “Me and Bobby McGee” — to him every night for the first two years of his life. But when Eve needs extra help drifting off, I can just hand her off to her dad. This is amazing. And it worries me.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-articleLarge.jpg',
'height': 384,
'width': 600,
'legacy': {'xlarge': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 384},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-popup.jpg',
'height': 416,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-blog480.jpg',
'height': 307,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-blog533.jpg',
'height': 341,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-blog427.jpg',
'height': 273,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-tmagSF.jpg',
'height': 231,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-tmagArticle.jpg',
'height': 378,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-slide.jpg',
'height': 384,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-jumbo.jpg',
'height': 655,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-superJumbo.jpg',
'height': 1309,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-blog225.jpg',
'height': 144,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-master1050.jpg',
'height': 671,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-master675.jpg',
'height': 432,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-master495.jpg',
'height': 316,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-master180.jpg',
'height': 115,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-master315.jpg',
'height': 201,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-master768.jpg',
'height': 491,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-horizontalMediumAt2X.jpg',
'height': 3865,
'width': 5798,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-threeByTwoLargeAt2X.jpg',
'height': 3865,
'width': 5798,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-articleInline.jpg',
'height': 121,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-hpSmall.jpg',
'height': 104,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-blogSmallInline.jpg',
'height': 97,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mediumFlexible177.jpg',
'height': 113,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/10/22/multimedia/Parenting-BondingRemarried2/merlin_178842720_2fb38542-2f8d-4392-b0dd-2d805551f469-mobileMasterAt3x.jpg',
'height': 1151,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'It’s Easier to Parent With a Partner in Many Ways, Except This One',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Single Persons',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Dating and Relationships',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Single Parents', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Single Mothers', 'rank': 7, 'major': 'N'}],
'pub_date': '2020-10-28T16:35:37+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Elisabeth Kwak-Hefferan',
'person': [{'firstname': 'Elisabeth',
'middlename': None,
'lastname': 'Kwak-Hefferan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d4b76763-3c02-55e5-9306-f0639d7e6774',
'word_count': 1282,
'uri': 'nyt://article/d4b76763-3c02-55e5-9306-f0639d7e6774'},
{'abstract': 'A TV chef abandons unaffordable beef. Blackouts make for sweltering summer nights. Changing money feels like a drug deal: The financial meltdown means daily pain and a blow to a country’s pride.',
'web_url': 'https://www.nytimes.com/2020/07/12/world/middleeast/beirut-lebanon-economic-crisis.html',
'snippet': 'A TV chef abandons unaffordable beef. Blackouts make for sweltering summer nights. Changing money feels like a drug deal: The financial meltdown means daily pain and a blow to a country’s pride.',
'lead_paragraph': 'BEIRUT, Lebanon — For three decades, Chef Antoine El Hajj has appeared on television five days a week to help cooks across Lebanon improve their grasp of the culinary arts.',
'print_section': 'A',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-horizontalMediumAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-threeByTwoLargeAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/07/12/world/11Lebanon-Dispatch/11Lebanon-Dispatch-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Bartering Child’s Dress for Food: Life in Lebanon’s Economic Crisis',
'kicker': 'Lebanon Dispatch',
'content_kicker': None,
'print_headline': 'Will Trade a Child’s Green Dress for Sugar, Milk and Detergent',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Lebanon',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Beirut (Lebanon)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Banking and Financial Institutions',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Currency', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Poverty', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Barter', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'Cooking and Cookbooks',
'rank': 9,
'major': 'N'},
{'name': 'persons',
'value': 'El Hajj, Antoine',
'rank': 10,
'major': 'N'}],
'pub_date': '2020-07-12T09:00:11+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Middle East',
'byline': {'original': 'By Ben Hubbard and Hwaida Saad',
'person': [{'firstname': 'Ben',
'middlename': None,
'lastname': 'Hubbard',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Hwaida',
'middlename': None,
'lastname': 'Saad',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/692db4ff-0f59-586a-bc3a-e80a02be8394',
'word_count': 1151,
'uri': 'nyt://article/692db4ff-0f59-586a-bc3a-e80a02be8394'},
{'abstract': 'Just when you thought potty training was over.',
'web_url': 'https://www.nytimes.com/article/bed-wetting-causes-solutions.html',
'snippet': 'Just when you thought potty training was over.',
'lead_paragraph': 'This guide was originally published on Jan. 31, 2020 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-superJumbo.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-threeByTwoLargeAt2X.jpg',
'height': 1167,
'width': 1750,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/30/multimedia/30-Parenting-bedwettingtoddlers/30-Parenting-bedwettingtoddlers-mobileMasterAt3x.jpg',
'height': 1750,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'How to Stop Bed-Wetting At Night',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Toilet Training',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Bedwetting', 'rank': 4, 'major': 'N'}],
'pub_date': '2020-04-18T02:30:33+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Meghan MacLean Weir, M.D',
'person': [{'firstname': 'Meghan',
'middlename': 'Maclean',
'lastname': 'Weir',
'qualifier': 'M.D',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/31d99fa4-3549-54f3-9ac4-b255c044e880',
'word_count': 1285,
'uri': 'nyt://article/31d99fa4-3549-54f3-9ac4-b255c044e880'},
{'abstract': 'Despite growing fears of its invincibility, Amazon could be threatened as smartphones transform the way Americans shop and goods are delivered.',
'web_url': 'https://www.nytimes.com/2014/12/18/technology/personaltech/amazon-not-as-unstoppable-as-it-may-appear.html',
'snippet': 'Despite growing fears of its invincibility, Amazon could be threatened as smartphones transform the way Americans shop and goods are delivered.',
'lead_paragraph': 'Thanks to its ugly spat with book publishers, Amazon has lately been cast as the abominable boogeyman of American commerce.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/12/18/technology/18state-illoq/18state-illoq-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-articleLarge.jpg',
'height': 366,
'width': 600,
'legacy': {'xlarge': 'images/2014/12/18/technology/18state-illoq/18state-illoq-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 366},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-blog480.jpg',
'height': 293,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-blog427.jpg',
'height': 260,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-tmagArticle.jpg',
'height': 361,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-jumbo.jpg',
'height': 375,
'width': 615,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-blog225.jpg',
'height': 137,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-master180.jpg',
'height': 110,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-popup.jpg',
'height': 375,
'width': 615,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-blog533.jpg',
'height': 325,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-tmagSF.jpg',
'height': 221,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-slide.jpg',
'height': 366,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-superJumbo.jpg',
'height': 375,
'width': 615,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-master495.jpg',
'height': 302,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-master315.jpg',
'height': 192,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-articleInline.jpg',
'height': 116,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-hpSmall.jpg',
'height': 99,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-blogSmallInline.jpg',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-mediumFlexible177.jpg',
'height': 108,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-sfSpan.jpg',
'height': 241,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-largeHorizontal375.jpg',
'height': 229,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-largeWidescreen573.jpg',
'height': 321,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/12/18/technology/18state-illoq/18state-illoq-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/18/technology/18state-illoq/18state-illoq-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Amazon Not as Unstoppable as It Might Appear',
'kicker': 'State of the Art',
'content_kicker': None,
'print_headline': 'Amazon Not as Unstoppable as It Might Appear',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Smartphones', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Delivery Services', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Supermarkets and Grocery Stores',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'United States Economy',
'rank': 7,
'major': 'N'},
{'name': 'organizations', 'value': 'Instacart', 'rank': 8, 'major': 'N'},
{'name': 'organizations',
'value': 'Postmates Inc',
'rank': 9,
'major': 'N'}],
'pub_date': '2014-12-17T15:28:13+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'subsection_name': 'Personal Tech',
'byline': {'original': 'By Farhad Manjoo',
'person': [{'firstname': 'Farhad',
'middlename': None,
'lastname': 'Manjoo',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/6dcd16a2-a2a4-5f99-8ae5-b2879776e289',
'word_count': 1256,
'uri': 'nyt://article/6dcd16a2-a2a4-5f99-8ae5-b2879776e289'},
{'abstract': 'After a Justice Department investigation into e-book price-fixing, the cost of buying an e-book was supposed to plunge, but sales of e-readers and the content for them have stalled.',
'web_url': 'https://www.nytimes.com/2012/12/24/technology/e-book-price-war-has-yet-to-arrive.html',
'snippet': 'After a Justice Department investigation into e-book price-fixing, the cost of buying an e-book was supposed to plunge, but sales of e-readers and the content for them have stalled.',
'lead_paragraph': 'Right about now, just as millions of e-readers and tablets are being slipped under Christmas trees, there was supposed to be a ferocious price war over e-books.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2012/12/24/business/EBOOKS/EBOOKS-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-miniMoth-v4.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-articleLarge-v4.jpg',
'height': 354,
'width': 600,
'legacy': {'xlarge': 'images/2012/12/24/business/EBOOKS/EBOOKS-articleLarge-v4.jpg',
'xlargewidth': 600,
'xlargeheight': 354},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-blog480-v4.jpg',
'height': 283,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-blog427-v3.jpg',
'height': 252,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-tmagArticle-v3.jpg',
'height': 350,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-jumbo-v4.jpg',
'height': 605,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-blog225.jpg',
'height': 133,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-popup-v4.jpg',
'height': 384,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-blog533-v3.jpg',
'height': 315,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-tmagSF-v3.jpg',
'height': 214,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-slide-v3.jpg',
'height': 354,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-superJumbo-v4.jpg',
'height': 1209,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-square320-v4.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-filmstrip-v4.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-square640-v4.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-moth-v4.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-articleInline-v4.jpg',
'height': 112,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-hpSmall-v3.jpg',
'height': 96,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-blogSmallInline-v3.jpg',
'height': 89,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-mediumFlexible177.jpg',
'height': 105,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-sfSpan-v4.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-hpLarge-v3.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-videoHpMedium-v3.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/12/24/business/EBOOKS/EBOOKS-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/24/business/EBOOKS/EBOOKS-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Little Sign of a Predicted E-Book Price War',
'kicker': None,
'content_kicker': None,
'print_headline': 'Little Sign of a Predicted E-Book Price War',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'E-Books and Readers',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Macmillan Publishers',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 4,
'major': 'N'},
{'name': 'organizations', 'value': 'Apple Inc', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Justice Department',
'rank': 6,
'major': 'N'}],
'pub_date': '2012-12-23T23:23:09+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By David Streitfeld',
'person': [{'firstname': 'David',
'middlename': None,
'lastname': 'Streitfeld',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/fbf0b2d8-e070-5db5-86f7-f11d5ecbf79d',
'word_count': 1253,
'uri': 'nyt://article/fbf0b2d8-e070-5db5-86f7-f11d5ecbf79d'},
{'abstract': 'Why James Buchanan wasn’t as bad a president as you think.',
'web_url': 'https://opinionator.blogs.nytimes.com/2010/12/30/rethinking-the-old-public-functionary/',
'snippet': 'Why James Buchanan wasn’t as bad a president as you think.',
'lead_paragraph': 'By late December 1860, President James Buchanan was easily the most despised man in America, and particularly in the North. “The President,” one supporter observed glumly, “seems to be execrated now by four fifths of the people of all parties” – and this in New York City, the center of the cotton trade and the most pro-Southern city in the free states. ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/opinion/opinionator-pog-disunion/opinionator-pog-disunion-thumbStandard.gif',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/04/25/opinion/opinionator-pog-disunion/opinionator-pog-disunion-thumbStandard.gif',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/opinion/opinionator-pog-disunion/opinionator-pog-disunion-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/04/25/opinion/opinionator-pog-disunion/opinionator-pog-disunion-blogSmallThumb.gif',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Rethinking the Old Public Functionary',
'kicker': 'Disunion',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Civil War (US) (1861-65)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Buchanan, James', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Lincoln, Abraham', 'rank': 4, 'major': 'N'},
{'name': 'organizations', 'value': 'Senate', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'South Carolina',
'rank': 6,
'major': 'N'}],
'pub_date': '2010-12-31T02:00:20+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'byline': {'original': 'By Russell McClintock',
'person': [{'firstname': 'Russell',
'middlename': None,
'lastname': 'McClintock',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/4693729b-f583-5118-b395-6cd6292401f7',
'word_count': 1355,
'uri': 'nyt://article/4693729b-f583-5118-b395-6cd6292401f7'},
{'abstract': 'With the proliferation of images of babies and children online, the idea that anyone might deserve protection from the digital lens has become an aberration.',
'web_url': 'https://www.nytimes.com/2011/02/20/fashion/20CULTURAL.html',
'snippet': 'With the proliferation of images of babies and children online, the idea that anyone might deserve protection from the digital lens has become an aberration.',
'lead_paragraph': 'MY wife was about to go into the operating room for a scheduled C-section a few months ago when a nurse asked me an urgent question: “Where is your camera?”',
'print_section': 'ST',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/fashion/SUB-CULTURAL/SUB-CULTURAL-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/fashion/SUB-CULTURAL/SUB-CULTURAL-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/fashion/SUB-CULTURAL/SUB-CULTURAL-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/02/20/fashion/SUB-CULTURAL/SUB-CULTURAL-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'The Digital Lives of Babies',
'kicker': 'Cultural Studies',
'content_kicker': None,
'print_headline': 'Underage and Overexposed',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Privacy', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Recordings and Downloads (Video)',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Photography', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Babies', 'rank': 6, 'major': 'N'}],
'pub_date': '2011-02-18T21:40:22+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Lee Siegel',
'person': [{'firstname': 'Lee',
'middlename': None,
'lastname': 'Siegel',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/da9b97fe-e2bb-5e34-842f-b306b0bcee12',
'word_count': 1238,
'uri': 'nyt://article/da9b97fe-e2bb-5e34-842f-b306b0bcee12'},
{'abstract': 'Highlights of Mary Roach’s look at the way humans adapt to spacefaring include zestful accounts of human-waste disposal, body odor control and astral sexual desire.',
'web_url': 'https://www.nytimes.com/2010/08/08/books/review/Lord-t.html',
'snippet': 'Highlights of Mary Roach’s look at the way humans adapt to spacefaring include zestful accounts of human-waste disposal, body odor control and astral sexual desire.',
'lead_paragraph': 'Anyone who thinks astronauts ply a glamorous trade would do well to read Mary Roach’s “Packing for Mars.” The book is an often hilarious, sometimes queasy-making catalog of the strange stuff devised to permit people to survive in an environment for which their bodies are stupendously unsuited. Roach eases us into the story, with an anecdote that reveals the cultural differences among spacefaring nations. In Japan, psychologists evaluate astronaut candidates by, among other things, their ability to fold origami cranes swiftly under stress.',
'print_section': 'BR',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/08/books/review/LORD/LORD-jumbo.jpg',
'height': 1024,
'width': 1009,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/08/books/review/LORD/LORD-popup.jpg',
'height': 500,
'width': 493,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/08/books/review/LORD/LORD-articleInline.jpg',
'height': 193,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/08/08/books/review/LORD/LORD-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/08/08/books/review/LORD/LORD-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Astral Bodies',
'kicker': None,
'content_kicker': None,
'print_headline': 'Astral Bodies',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Roach, Mary',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Space', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'National Aeronautics and Space Administration',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Apollo Project', 'rank': 5, 'major': 'N'}],
'pub_date': '2010-08-06T16:25:35+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By M. G. Lord', 'person': [], 'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/fd739ca3-892b-559d-8a38-fef7e405402e',
'word_count': 1284,
'uri': 'nyt://article/fd739ca3-892b-559d-8a38-fef7e405402e'},
{'abstract': 'Theresa Coleman of San Francisco took custody of her niece’s four young children, who were living in Georgia, but financial aid has been hard to come by.',
'web_url': 'https://www.nytimes.com/2011/02/25/us/25bcbayview.html',
'snippet': 'Theresa Coleman of San Francisco took custody of her niece’s four young children, who were living in Georgia, but financial aid has been hard to come by.',
'lead_paragraph': 'Last October, Theresa Coleman received a call from a child-welfare investigator. Four young children, distant family members, had been discovered in a Georgia motel room filled with drugs, alcohol, a half-loaf of bread, a half-jar of peanut butter and a dwindling supply of baby formula.',
'print_section': 'A',
'print_page': '21A',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/02/25/us/25BCBAYVIEW_337-span/25BCBAYVIEW-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Rescuing 4 Children, but Struggling for Assistance',
'kicker': 'The Bay Citizen',
'content_kicker': None,
'print_headline': 'Rescuing 4 Children, but Struggling for Assistance',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Youth',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Child Custody and Support',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'San Francisco (Calif)',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-02-25T03:48:46+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Trey Bundy',
'person': [{'firstname': 'Trey',
'middlename': None,
'lastname': 'Bundy',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/add56122-8b74-5c12-ba1b-5fd2a2833227',
'word_count': 1243,
'uri': 'nyt://article/add56122-8b74-5c12-ba1b-5fd2a2833227'}],
[{'abstract': 'Kids need comfort food, too, and much more this week from NYT Parenting.',
'web_url': 'https://www.nytimes.com/2020/03/30/parenting/coronavirus-comfort-food-kids.html',
'snippet': 'Kids need comfort food, too, and much more this week from NYT Parenting.',
'lead_paragraph': 'Yesterday my lunch was cold roast chicken eaten directly from the carcass while standing up, with a side of strawberries my kids had not finished. My older daughter had Cheerios and fruit for lunch; the little one had her 47th quesadilla of this quarantine.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-superJumbo.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumSquareAt3X.jpg',
'height': 1166,
'width': 1166,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-horizontalMediumAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-threeByTwoLargeAt2X.jpg',
'height': 1166,
'width': 1749,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/23/multimedia/parenting-tv-3/parenting-tv-3-mobileMasterAt3x.jpg',
'height': 1166,
'width': 1750,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'An All-Quesadilla Diet Is OK for Now',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Quarantines', 'rank': 4, 'major': 'N'}],
'pub_date': '2020-03-30T16:47:15+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'byline': {'original': 'By Jessica Grose',
'person': [{'firstname': 'Jessica',
'middlename': None,
'lastname': 'Grose',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c3a2e789-c2c7-5294-83a6-f9b4477bf572',
'word_count': 511,
'uri': 'nyt://article/c3a2e789-c2c7-5294-83a6-f9b4477bf572'},
{'abstract': 'Ten years ago, psychologists proposed that a wide range of people would suffer anxiety and grief over climate. Skepticism about that idea is gone.',
'web_url': 'https://www.nytimes.com/2022/02/06/health/climate-anxiety-therapy.html',
'snippet': 'Ten years ago, psychologists proposed that a wide range of people would suffer anxiety and grief over climate. Skepticism about that idea is gone.',
'lead_paragraph': 'PORTLAND, Ore. — It would hit Alina Black in the snack aisle at Trader Joe’s, a wave of guilt and shame that made her skin crawl.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-horizontalMediumAt2X.jpg',
'height': 2731,
'width': 4096,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-threeByTwoLargeAt2X.jpg',
'height': 2731,
'width': 4096,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine3000-v2.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/02/06/world/06CLIMATETHERAPY-promo-01/06CLIMATETHERAPY-promo-01-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Climate Change Enters the Therapy Room',
'kicker': None,
'content_kicker': None,
'print_headline': 'Anxiety Over Climate Change Lands on the Therapist’s Couch',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Anxiety and Stress',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Psychology and Psychologists',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Global Warming', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Portland (Ore)', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Therapy and Rehabilitation',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Grief (Emotion)', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Environment', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'audio-neutral-informative',
'rank': 8,
'major': 'N'},
{'name': 'subject',
'value': 'audio-negative-sad',
'rank': 9,
'major': 'N'},
{'name': 'subject',
'value': 'audio-neutral-immersive',
'rank': 10,
'major': 'N'}],
'pub_date': '2022-02-06T10:00:12+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Ellen Barry',
'person': [{'firstname': 'Ellen',
'middlename': None,
'lastname': 'Barry',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d1863330-f8d0-5456-8b7a-879dc7bb5d27',
'word_count': 1923,
'uri': 'nyt://article/d1863330-f8d0-5456-8b7a-879dc7bb5d27'},
{'abstract': 'Russell Baker, a longtime New York Times columnist, died last week at 93. He understood a viral quip well before the era of Twitter.',
'web_url': 'https://www.nytimes.com/2019/01/26/opinion/sunday/the-quotable-russell-baker.html',
'snippet': 'Russell Baker, a longtime New York Times columnist, died last week at 93. He understood a viral quip well before the era of Twitter.',
'lead_paragraph': 'Russell Baker, a longtime New York Times columnist, died last week at 93. Mr. Baker’s observations on politics and cheeky insights on the everyday — which he shared in his “Observer” column for more than 35 years — were variously described as “wry and exquisitely observational,” “sardonic and idealistic at the same time” and having “a deep appreciation for the absurdity of living.” Mostly, though, he understood a viral quip well before he would have suffered the indignity of watching his words trend on Twitter.',
'print_section': 'SR',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-articleLarge.jpg',
'height': 754,
'width': 600,
'legacy': {'xlarge': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 754},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-popup.jpg',
'height': 500,
'width': 398,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-blog480.jpg',
'height': 603,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-blog533.jpg',
'height': 670,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-blog427.jpg',
'height': 537,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-tmagSF.jpg',
'height': 455,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-tmagArticle.jpg',
'height': 744,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-slide.jpg',
'height': 500,
'width': 398,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-jumbo.jpg',
'height': 1024,
'width': 815,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-superJumbo.jpg',
'height': 2048,
'width': 1630,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-blog225.jpg',
'height': 283,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-master1050.jpg',
'height': 1320,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-master675.jpg',
'height': 849,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-master495.jpg',
'height': 622,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-master180.jpg',
'height': 226,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-master315.jpg',
'height': 396,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-master768.jpg',
'height': 965,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-horizontalMediumAt2X.jpg',
'height': 2226,
'width': 3341,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-threeByTwoLargeAt2X.jpg',
'height': 2226,
'width': 3341,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-articleInline.jpg',
'height': 239,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-hpSmall.jpg',
'height': 205,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-blogSmallInline.jpg',
'height': 190,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-mediumFlexible177.jpg',
'height': 223,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/27/opinion/27bakerquotes/27bakerquotes-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'The Quotable Russell Baker',
'kicker': None,
'content_kicker': None,
'print_headline': 'Quotable Russell Baker',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Baker, Russell',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Times',
'rank': 2,
'major': 'N'},
{'name': 'creative_works',
'value': 'Growing Up (Book)',
'rank': 3,
'major': 'N'},
{'name': 'creative_works',
'value': 'An American in Washington (Book)',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Comedy and Humor', 'rank': 5, 'major': 'N'}],
'pub_date': '2019-01-26T18:26:05+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By James Hitchcock',
'person': [{'firstname': 'James',
'middlename': None,
'lastname': 'Hitchcock',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/1c2bdf5a-9474-5cf3-b38f-b24b90aa29a1',
'word_count': 613,
'uri': 'nyt://article/1c2bdf5a-9474-5cf3-b38f-b24b90aa29a1'},
{'abstract': 'The infectious children’s song debuted at No. 32 on the Billboard Hot 100 this week, which means Pinkfong has now had as many Top 40 hits as Jimi Hendrix.',
'web_url': 'https://www.nytimes.com/2019/01/10/arts/music/baby-shark-billboard.html',
'snippet': 'The infectious children’s song debuted at No. 32 on the Billboard Hot 100 this week, which means Pinkfong has now had as many Top 40 hits as Jimi Hendrix.',
'lead_paragraph': 'We preemptively apologize for getting it stuck in your head.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-horizontalMediumAt2X.jpg',
'height': 2160,
'width': 3240,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-threeByTwoLargeAt2X.jpg',
'height': 2160,
'width': 3240,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/01/11/world/11xp-babyshark-1/11xp-babyshark-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Baby Shark (Doo Doo Doo Doo Doo Doo) Billboard Chart (Doo Doo Doo Doo Doo Doo)',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Video Recordings, Downloads and Streaming',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Music', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Billboard (Magazine)',
'rank': 3,
'major': 'N'},
{'name': 'creative_works',
'value': 'Baby Shark (Song)',
'rank': 4,
'major': 'N'}],
'pub_date': '2019-01-10T09:20:49+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'Arts',
'subsection_name': 'Music',
'byline': {'original': 'By Daniel Victor',
'person': [{'firstname': 'Daniel',
'middlename': None,
'lastname': 'Victor',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/084e5c10-88bc-5751-b2a4-4210fba5d543',
'word_count': 542,
'uri': 'nyt://article/084e5c10-88bc-5751-b2a4-4210fba5d543'},
{'abstract': 'The storied “beauty” pageant, revived two years ago, now rewards those who most creatively vent their frustration at public transit.',
'web_url': 'https://www.nytimes.com/2019/10/08/nyregion/Miss-Subways-NYC.html',
'snippet': 'The storied “beauty” pageant, revived two years ago, now rewards those who most creatively vent their frustration at public transit.',
'lead_paragraph': 'Last week in Brooklyn, Miss Subways 2019 was crowned with a wreath of plastic rats, troll dolls, and rhinestone unicorns.',
'print_section': 'MB',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-blog533-v2.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-superJumbo-v2.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-master1050-v2.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-master768-v2.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-horizontalMediumAt2X-v2.jpg',
'height': 4000,
'width': 6000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-threeByTwoLargeAt2X-v2.jpg',
'height': 4000,
'width': 6000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-threeByTwoSmallAt2X-v4.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-articleInline-v2.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-hpSmall-v2.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-blogSmallInline-v2.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-mediumFlexible177-v2.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/10/13/nyregion/08MISSSUBWAYS-03/08MISSSUBWAYS-03-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Miss Subways Is Back. This Year, a New Wave Rocker Takes the Crown.',
'kicker': None,
'content_kicker': None,
'print_headline': 'A Wild Ride Eventually Delivers Miss Subways',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Subways',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Beauty Contests', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'City Reliquary',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Littlefield (Brooklyn, NY, Arts Venue)',
'rank': 4,
'major': 'N'},
{'name': 'glocations',
'value': 'Gowanus (Brooklyn, NY)',
'rank': 5,
'major': 'N'}],
'pub_date': '2019-10-08T09:00:17+0000',
'document_type': 'article',
'news_desk': 'Metropolitan',
'section_name': 'New York',
'byline': {'original': 'By Britta Lokting',
'person': [{'firstname': 'Britta',
'middlename': None,
'lastname': 'Lokting',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/353366f3-6029-56f0-9fc3-a1a5dca6f7f7',
'word_count': 531,
'uri': 'nyt://article/353366f3-6029-56f0-9fc3-a1a5dca6f7f7'},
{'abstract': 'Initially known for simple purses in punchy colors, the Kate Spade New York label grew to include a vast collection that includes furniture, baby gifts and sneakers.',
'web_url': 'https://www.nytimes.com/2018/06/05/business/kate-spade-handbag-brand-history.html',
'snippet': 'Initially known for simple purses in punchy colors, the Kate Spade New York label grew to include a vast collection that includes furniture, baby gifts and sneakers.',
'lead_paragraph': 'Kate Spade was a fashion dynamo who turned a cheerful vision of affordable luxury into a leading American brand, but relinquished control before it became a commercial juggernaut.',
'print_section': 'A',
'print_page': '20',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-articleLarge.jpg',
'height': 1031,
'width': 600,
'legacy': {'xlarge': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 1031},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-popup.jpg',
'height': 500,
'width': 291,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-blog480.jpg',
'height': 825,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-blog533.jpg',
'height': 916,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-blog427.jpg',
'height': 734,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-tmagSF.jpg',
'height': 622,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-tmagArticle.jpg',
'height': 1018,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-slide.jpg',
'height': 500,
'width': 291,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-jumbo.jpg',
'height': 1024,
'width': 596,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-superJumbo.jpg',
'height': 2048,
'width': 1192,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-blog225.jpg',
'height': 387,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-master1050.jpg',
'height': 1805,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-master675.jpg',
'height': 1160,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-master495.jpg',
'height': 851,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-master180.jpg',
'height': 309,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-master315.jpg',
'height': 541,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-master768.jpg',
'height': 1320,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-horizontalMediumAt2X.jpg',
'height': 1336,
'width': 2005,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-threeByTwoLargeAt2X.jpg',
'height': 1336,
'width': 2005,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-articleInline.jpg',
'height': 327,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-hpSmall.jpg',
'height': 280,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-blogSmallInline.jpg',
'height': 260,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-mediumFlexible177.jpg',
'height': 304,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/06/06/business/oakImage-1528300036989/oakImage-1528300036989-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How Kate Spade’s Vision for Simple Bags Became a $2.4 Billion Brand',
'kicker': None,
'content_kicker': None,
'print_headline': 'How Kate Spade’s Vision for Simple Bags Became a $2.4 Billion Brand',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Handbags and Purses',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Luxury Goods and Services',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Kate Spade & Co',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Neiman Marcus Group',
'rank': 5,
'major': 'N'},
{'name': 'organizations', 'value': 'Coach Inc', 'rank': 6, 'major': 'N'},
{'name': 'persons', 'value': 'Spade, Kate', 'rank': 7, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 8, 'major': 'N'},
{'name': 'glocations',
'value': 'SoHo (Manhattan, NY)',
'rank': 9,
'major': 'N'}],
'pub_date': '2018-06-05T21:09:15+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Tiffany Hsu',
'person': [{'firstname': 'Tiffany',
'middlename': None,
'lastname': 'Hsu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ec4fc981-eae8-5e68-8003-5e400dfd2e69',
'word_count': 472,
'uri': 'nyt://article/ec4fc981-eae8-5e68-8003-5e400dfd2e69'},
{'abstract': 'More and more airlines are turning their attention to their youngest travelers — both to appease their parents, and to keep other passengers happy on long flights.',
'web_url': 'https://www.nytimes.com/2018/12/29/travel/how-airlines-are-catering-to-their-smallest-customers-children.html',
'snippet': 'More and more airlines are turning their attention to their youngest travelers — both to appease their parents, and to keep other passengers happy on long flights.',
'lead_paragraph': 'Airlines are constantly trying to find new ways to win customers. In this never-ending competition, carriers — mostly international ones — are now turning their attention to their youngest passengers, wooing children (and beleaguered parents) with new amenities such as toys, child-friendly toiletry kits, meals and amped up seat back entertainment.',
'print_section': 'TR',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-articleLarge-v2.jpg',
'height': 404,
'width': 600,
'legacy': {'xlarge': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 404},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-popup-v2.jpg',
'height': 438,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-blog480-v2.jpg',
'height': 323,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-blog533-v2.jpg',
'height': 359,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-blog427-v2.jpg',
'height': 288,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-tmagSF-v2.jpg',
'height': 244,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-tmagArticle-v2.jpg',
'height': 399,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-slide-v2.jpg',
'height': 404,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-jumbo-v2.jpg',
'height': 689,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-superJumbo-v2.jpg',
'height': 1379,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-blog225-v2.jpg',
'height': 152,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-master1050-v2.jpg',
'height': 707,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-master675-v2.jpg',
'height': 455,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-master495-v2.jpg',
'height': 333,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-master180-v2.jpg',
'height': 121,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-master315-v2.jpg',
'height': 212,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-master768-v2.jpg',
'height': 517,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-horizontalMediumAt2X-v2.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-threeByTwoLargeAt2X-v2.jpg',
'height': 2000,
'width': 3000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-articleInline-v2.jpg',
'height': 128,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-hpSmall-v2.jpg',
'height': 110,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-blogSmallInline-v2.jpg',
'height': 102,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-mediumFlexible177-v2.jpg',
'height': 119,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine3000-v2.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/30/travel/30trending-kidsflights1/30trending-kidsflights1-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'How Airlines Are Catering to Their Smallest Customers: Children',
'kicker': 'Trending',
'content_kicker': None,
'print_headline': 'Kits for Children on Board',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Toys', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'}],
'pub_date': '2018-12-29T10:00:01+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Shivani Vora',
'person': [{'firstname': 'Shivani',
'middlename': None,
'lastname': 'Vora',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/bdc3c73a-8b07-53ab-84eb-85671f5b3fef',
'word_count': 541,
'uri': 'nyt://article/bdc3c73a-8b07-53ab-84eb-85671f5b3fef'},
{'abstract': 'No more commercials showing men struggling to do a load of laundry, or asking women if they are “beach body ready.”',
'web_url': 'https://www.nytimes.com/2019/06/14/style/uk-gender-stereotype-ads-ban.html',
'snippet': 'No more commercials showing men struggling to do a load of laundry, or asking women if they are “beach body ready.”',
'lead_paragraph': 'Men unable to change diapers; women cleaning while men kick their feet up on the couch; women having trouble with parking: Scenes like these, which play on gender stereotypes, are now banned in British advertisements. Britain’s advertising regulator announced the changes in December, but companies were given a six-month adjustment period before they took effect.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-articleLarge.jpg',
'height': 590,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 590},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-popup.jpg',
'height': 500,
'width': 509,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-blog480.jpg',
'height': 472,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-blog533.jpg',
'height': 524,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-blog427.jpg',
'height': 420,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-tmagSF.jpg',
'height': 356,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-tmagArticle.jpg',
'height': 582,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-slide.jpg',
'height': 500,
'width': 509,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-jumbo.jpg',
'height': 1007,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-superJumbo.jpg',
'height': 2015,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-blog225.jpg',
'height': 221,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-master1050.jpg',
'height': 1033,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-master675.jpg',
'height': 664,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-master495.jpg',
'height': 487,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-master180.jpg',
'height': 177,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-master315.jpg',
'height': 310,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-master768.jpg',
'height': 756,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-horizontalMediumAt2X.jpg',
'height': 1478,
'width': 2215,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/merlin_156456156_5f6b50d9-14a2-406d-80ba-09d6cfe60889-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/merlin_156456156_5f6b50d9-14a2-406d-80ba-09d6cfe60889-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/merlin_156456156_5f6b50d9-14a2-406d-80ba-09d6cfe60889-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-threeByTwoLargeAt2X.jpg',
'height': 1477,
'width': 2215,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-articleInline.jpg',
'height': 174,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-hpSmall.jpg',
'height': 150,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-blogSmallInline.jpg',
'height': 139,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-mediumFlexible177.jpg',
'height': 163,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/merlin_156456156_5f6b50d9-14a2-406d-80ba-09d6cfe60889-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/merlin_156456156_5f6b50d9-14a2-406d-80ba-09d6cfe60889-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/merlin_156456156_5f6b50d9-14a2-406d-80ba-09d6cfe60889-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/14/fashion/14ukgenderads-1/14ukgenderads-1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Gender Stereotypes Banned in British Advertising',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Gender', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'Great Britain', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Men and Boys', 'rank': 5, 'major': 'N'}],
'pub_date': '2019-06-14T19:09:24+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Valeriya Safronova',
'person': [{'firstname': 'Valeriya',
'middlename': None,
'lastname': 'Safronova',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/da70b1b3-ee0b-5678-b426-712c56b659a3',
'word_count': 588,
'uri': 'nyt://article/da70b1b3-ee0b-5678-b426-712c56b659a3'},
{'abstract': 'New picture books include “Old Dog Baby Baby” and “Hand in Hand.”',
'web_url': 'https://www.nytimes.com/interactive/2016/11/11/books/review/13bookshelf-oh-baby.html',
'snippet': 'New picture books include “Old Dog Baby Baby” and “Hand in Hand.”',
'lead_paragraph': 'New picture books include “Old Dog Baby Baby” and “Hand in Hand.”',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-sfSpan-v2.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-largeHorizontalJumbo-v2.jpg',
'height': 684,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-facebookJumbo-v2.jpg',
'height': 551,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-hpLarge-v2.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-largeWidescreen573-v2.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-largeWidescreen1050-v2.jpg',
'height': 592,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/11/13/books/review/13baby-1/13baby-1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/11/13/books/review/13baby-1/13baby-1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-videoSixteenByNineJumbo1600-v2.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-articleInline-v2.jpg',
'height': 88,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-hpSmall-v2.jpg',
'height': 76,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-blogSmallInline-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-mediumFlexible177-v2.jpg',
'height': 82,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-verticalTwoByThree735-v2.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-articleLarge-v2.jpg',
'height': 278,
'width': 600,
'legacy': {'xlarge': 'images/2016/11/13/books/review/13baby-1/13baby-1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 278},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-blog480-v2.jpg',
'height': 222,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-blog427-v2.jpg',
'height': 198,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-tmagArticle-v2.jpg',
'height': 274,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-jumbo-v2.jpg',
'height': 474,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-blog225-v2.jpg',
'height': 104,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-master675-v2.jpg',
'height': 313,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-master180-v2.jpg',
'height': 83,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-master768-v2.jpg',
'height': 356,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-popup-v2.jpg',
'height': 301,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-blog533-v2.jpg',
'height': 247,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-tmagSF-v2.jpg',
'height': 168,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-slide-v2.jpg',
'height': 278,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-superJumbo-v2.jpg',
'height': 949,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-master1050-v2.jpg',
'height': 486,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-master495-v2.jpg',
'height': 229,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/11/13/books/review/13baby-1/13baby-1-master315-v2.jpg',
'height': 146,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'}],
'headline': {'main': 'Bookshelf: Oh, Baby!',
'kicker': 'Children’s Books',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'}],
'pub_date': '2016-11-11T16:02:51+0000',
'document_type': 'multimedia',
'news_desk': 'Books',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By MARIA RUSSO',
'person': [{'firstname': 'Maria',
'middlename': None,
'lastname': 'RUSSO',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/b0dfaa5e-2ed5-52eb-a58f-50a936bc3da8',
'word_count': 0,
'uri': 'nyt://interactive/b0dfaa5e-2ed5-52eb-a58f-50a936bc3da8'},
{'abstract': 'The longstanding tradition will return to full capacity after two years of scaled-back festivities because of the coronavirus pandemic. Here’s how to watch.',
'web_url': 'https://www.nytimes.com/2022/12/28/nyregion/new-years-eve-ball-drop-how-to-watch.html',
'snippet': 'The longstanding tradition will return to full capacity after two years of scaled-back festivities because of the coronavirus pandemic. Here’s how to watch.',
'lead_paragraph': 'Crowds will once again gather in Times Square on New Year’s Eve to bring in 2023, peering through more than one ton of confetti to catch a glimpse of the 11,875-pound ball made of Waterford Crystal as it descends, an annual tradition that dates back to 1907.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-horizontalMediumAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-threeByTwoLargeAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/19/multimedia/19-nye-htw-1-453f/19-nye-htw-1-453f-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'What to Know About the Times Square Ball Drop on New Year’s Eve',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'New Year',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 3, 'major': 'N'},
{'name': 'glocations',
'value': 'Times Square and 42nd Street (Manhattan, NY)',
'rank': 4,
'major': 'N'}],
'pub_date': '2022-12-28T15:56:57+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Lola Fadulu',
'person': [{'firstname': 'Lola',
'middlename': None,
'lastname': 'Fadulu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0bd05fda-251a-5934-ac14-c70efd474bd7',
'word_count': 501,
'uri': 'nyt://article/0bd05fda-251a-5934-ac14-c70efd474bd7'}],
[{'abstract': 'Live like Bill, pay attention and learn how to iron a shirt.',
'web_url': 'https://www.nytimes.com/interactive/2016/12/28/style/ways-to-be-a-better-person-in-2017.html',
'snippet': 'Live like Bill, pay attention and learn how to iron a shirt.',
'lead_paragraph': 'Live like Bill, pay attention and learn how to iron a shirt.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2016/12/27/style/better-person-1/better-person-1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-superJumbo.jpg',
'height': 2000,
'width': 2000,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/12/27/style/better-person-1/better-person-1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-articleInline-v2.jpg',
'height': 184,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-hpSmall-v2.jpg',
'height': 158,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-blogSmallInline-v2.jpg',
'height': 146,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-mediumFlexible177-v2.jpg',
'height': 171,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/12/27/style/better-person-1/better-person-1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/12/27/style/better-person-1/better-person-1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'}],
'headline': {'main': '11 Ways to Be a Better Person in 2017',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Cunningham, Bill',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'New Year', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Obama, Michelle', 'rank': 3, 'major': 'N'}],
'pub_date': '2016-12-28T10:00:09+0000',
'document_type': 'multimedia',
'news_desk': 'Style',
'section_name': 'Style',
'byline': {'original': 'By Anya Strzemien',
'person': [{'firstname': 'Anya',
'middlename': None,
'lastname': 'Strzemien',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/b587d194-f7b8-53fe-921e-3edbda905882',
'word_count': 0,
'uri': 'nyt://interactive/b587d194-f7b8-53fe-921e-3edbda905882'},
{'abstract': 'Have you been paying attention to the news recently? See how many of these 10 questions you can get right.',
'web_url': 'https://www.nytimes.com/interactive/2022/05/17/learning/17Student-News-Quiz.html',
'snippet': 'Have you been paying attention to the news recently? See how many of these 10 questions you can get right.',
'lead_paragraph': 'Have you been paying attention to the news recently? See how many of these 10 questions you can get right.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-horizontalMediumAt2X.jpg',
'height': 2667,
'width': 4000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-threeByTwoLargeAt2X.jpg',
'height': 2667,
'width': 4000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/05/12/us/politics/12dc-formula-1-LNNQ/merlin_206693574_d2f8f4ef-a57d-4be6-80ab-53bbec52d082-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Weekly News Quiz for Students: Racist Shooting, NATO, Product Shortages',
'kicker': 'Weekly News Quiz for Students',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2022-05-17T12:39:09+0000',
'document_type': 'multimedia',
'news_desk': 'The Learning Network',
'section_name': 'The Learning Network',
'byline': {'original': 'Compiled by John Otis and Jeremy Engle',
'person': [{'firstname': 'John',
'middlename': None,
'lastname': 'Otis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Jeremy',
'middlename': None,
'lastname': 'Engle',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/cfbd4fe2-be54-5933-9a8a-a5df3afac14e',
'word_count': 0,
'uri': 'nyt://interactive/cfbd4fe2-be54-5933-9a8a-a5df3afac14e'},
{'abstract': 'Kevin Baker looks at our country’s tradition of innovation in “America the Ingenious.”',
'web_url': 'https://www.nytimes.com/2016/12/30/books/review/america-the-ingenious-kevin-baker.html',
'snippet': 'Kevin Baker looks at our country’s tradition of innovation in “America the Ingenious.”',
'lead_paragraph': 'AMERICA THE INGENIOUSHow a Nation of Dreamers, Immigrants, and Tinkerers Changed the WorldBy Kevin BakerIllustrated by Chris Dent262 pp. Artisan. $29.95.',
'print_section': 'BR',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-articleLarge.jpg',
'height': 402,
'width': 600,
'legacy': {'xlarge': 'images/2017/01/01/books/review/01kurin/01kurin-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 402},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-blog480.jpg',
'height': 322,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-blog427.jpg',
'height': 286,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-tmagArticle.jpg',
'height': 397,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-jumbo.jpg',
'height': 686,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-blog225.jpg',
'height': 151,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-master675.jpg',
'height': 452,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-master180.jpg',
'height': 121,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-master768.jpg',
'height': 514,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-popup.jpg',
'height': 435,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-blog533.jpg',
'height': 357,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-tmagSF.jpg',
'height': 243,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-slide.jpg',
'height': 402,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-superJumbo.jpg',
'height': 1372,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-master1050.jpg',
'height': 703,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-master495.jpg',
'height': 332,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-master315.jpg',
'height': 211,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/01/01/books/review/01kurin/01kurin-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-mediumFlexible177.jpg',
'height': 119,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/01/01/books/review/01kurin/01kurin-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/01/01/books/review/01kurin/01kurin-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'A Celebration of American Innovation, From the Erie Canal to Jazz to the MRI',
'kicker': 'Nonfiction',
'content_kicker': None,
'print_headline': 'Innovation Nation',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'creative_works',
'value': 'America the Ingenious: How a Nation of Dreamers, Immigrants, and Tinkerers Changed the World (Book)',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Baker, Kevin (1958- )',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Innovation', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Books and Literature',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'United States', 'rank': 5, 'major': 'N'}],
'pub_date': '2016-12-30T11:00:02+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Richard Kurin',
'person': [{'firstname': 'Richard',
'middlename': None,
'lastname': 'Kurin',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/dc183ccb-8455-59fb-bde9-6f34e6d438a6',
'word_count': 576,
'uri': 'nyt://article/dc183ccb-8455-59fb-bde9-6f34e6d438a6'},
{'abstract': 'Plus: Do you delegate too much? Do you ask dumb questions? (That’s a good thing.) And have you tried to get a microloan?',
'web_url': 'https://boss.blogs.nytimes.com/2012/08/20/this-week-in-small-business-reinventing-the-toilet/',
'snippet': 'Plus: Do you delegate too much? Do you ask dumb questions? (That’s a good thing.) And have you tried to get a microloan?',
'lead_paragraph': 'What’s affecting me, my clients and other small-business owners this week.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'This Week in Small Business: Reinventing the Toilet',
'kicker': 'You're the Boss',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Entrepreneurship',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Small Business', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Start-ups', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'United States Economy',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'Gates, Bill', 'rank': 5, 'major': 'N'}],
'pub_date': '2012-08-20T11:00:19+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Entrepreneurship',
'byline': {'original': 'By Gene Marks',
'person': [{'firstname': 'Gene',
'middlename': None,
'lastname': 'Marks',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c926bbb4-c5fc-5113-a72d-668a31fae1b5',
'word_count': 1131,
'uri': 'nyt://article/c926bbb4-c5fc-5113-a72d-668a31fae1b5'},
{'abstract': 'Byron Walden is back. Avert your eyes.',
'web_url': 'https://wordplay.blogs.nytimes.com/2015/05/15/i-havent-the-foggiest/',
'snippet': 'Byron Walden is back. Avert your eyes.',
'lead_paragraph': 'SATURDAY PUZZLE — We’ve talked about puzzles that are “crunchy,” which essentially means that the entries are both lively and more than suitably challenging, and the clues require a lot of thought to solve. They are typically late-week puzzles, filled with misdirected and toughened cluing. In other words, “crunchy” puzzles give you something on which to really chew.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'I Haven’t the Foggiest',
'kicker': 'Wordplay',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Crossword Puzzles',
'rank': 1,
'major': 'N'}],
'pub_date': '2015-05-16T02:00:31+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Crosswords & Games',
'byline': {'original': 'By Deb Amlen',
'person': [{'firstname': 'Deb',
'middlename': None,
'lastname': 'Amlen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/49f90bcc-847f-5184-af62-866bd45029e8',
'word_count': 616,
'uri': 'nyt://article/49f90bcc-847f-5184-af62-866bd45029e8'},
{'abstract': '“For the first eight years of Walker’s life, every night is the same.”',
'web_url': 'https://www.nytimes.com/2011/05/08/books/review/excerpt-the-boy-in-the-moon-by-ian-brown.html',
'snippet': '“For the first eight years of Walker’s life, every night is the same.”',
'lead_paragraph': 'One',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': '‘The Boy in the Moon’',
'kicker': 'Excerpt',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'}],
'pub_date': '2011-05-06T00:56:03+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Ian Brown',
'person': [{'firstname': 'Ian',
'middlename': None,
'lastname': 'Brown',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'First Chapter',
'_id': 'nyt://article/fc80033e-9002-5b67-91f6-ee4347557720',
'word_count': 2751,
'uri': 'nyt://article/fc80033e-9002-5b67-91f6-ee4347557720'},
{'abstract': 'There is nothing like the arrival of a baby to crystallize the child-rearing views of everyone around a new parent — especially the views of that parent’s own parents, or parents-in-law.',
'web_url': 'https://www.nytimes.com/2013/09/20/booming/how-did-you-handle-grandparents-unsolicited-parenting-advice.html',
'snippet': 'There is nothing like the arrival of a baby to crystallize the child-rearing views of everyone around a new parent — especially the views of that parent’s own parents, or parents-in-law.',
'lead_paragraph': '“You’re picking him up too much.”',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-articleLarge.jpg',
'height': 598,
'width': 600,
'legacy': {'xlarge': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 598},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-blog480.jpg',
'height': 478,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-blog427.jpg',
'height': 425,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-tmagArticle.jpg',
'height': 590,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-jumbo.jpg',
'height': 1020,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-blog225.jpg',
'height': 224,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-master675.jpg',
'height': 673,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-master180.jpg',
'height': 179,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-popup.jpg',
'height': 500,
'width': 502,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-blog533.jpg',
'height': 531,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-tmagSF.jpg',
'height': 361,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-slide.jpg',
'height': 500,
'width': 502,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-superJumbo.jpg',
'height': 1383,
'width': 1388,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-master1050.jpg',
'height': 1046,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-master495.jpg',
'height': 493,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-articleInline.jpg',
'height': 189,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-hpSmall.jpg',
'height': 162,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-blogSmallInline.jpg',
'height': 150,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-mediumFlexible177.jpg',
'height': 176,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/20/booming/20parenting-booming-grandparents/20parenting-booming-grandparents-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'How Did You Handle Grandparents’ Unsolicited Parenting Advice?',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Grandparents', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Baby Boomers', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Breastfeeding', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Infant Formulas', 'rank': 6, 'major': 'N'}],
'pub_date': '2013-09-20T13:18:02+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Booming',
'byline': {'original': "By KJ Dell'Antonia",
'person': [{'firstname': 'Kj',
'middlename': None,
'lastname': "Dell'Antonia",
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ba42cfe8-a1c6-51c9-8986-daf6d9ab26d8',
'word_count': 565,
'uri': 'nyt://article/ba42cfe8-a1c6-51c9-8986-daf6d9ab26d8'},
{'abstract': 'British retailers, hotels and ceramic factories are betting on the arrival of the royal baby to improve the otherwise gloomy economic situation.',
'web_url': 'https://thelede.blogs.nytimes.com/2013/07/22/books-brioche-and-baby-clothes-the-royal-merchandise/',
'snippet': 'British retailers, hotels and ceramic factories are betting on the arrival of the royal baby to improve the otherwise gloomy economic situation.',
'lead_paragraph': 'LONDON — British retailers, hotels and ceramic factories are betting on the arrival of the royal baby to improve the otherwise gloomy economic situation.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Books, Brioche and Baby Clothes: The Royal Merchandise',
'kicker': 'The Lede',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Royal Family',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Catherine, Duchess of Cambridge',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Buckingham Palace',
'rank': 3,
'major': 'N'},
{'name': 'glocations', 'value': 'Great Britain', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-07-22T15:42:12+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Blogs',
'byline': {'original': 'By Julia Werdigier',
'person': [{'firstname': 'Julia',
'middlename': None,
'lastname': 'Werdigier',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/93934b08-8428-5b70-9884-dd648e120bb3',
'word_count': 581,
'uri': 'nyt://article/93934b08-8428-5b70-9884-dd648e120bb3'},
{'abstract': 'Demonstrators against economic austerity in Europe, organized by a group called Blockupy, immobilized a large part of central Frankfurt on Friday.',
'web_url': 'https://www.nytimes.com/2013/06/01/business/global/protests-block-european-central-bank-in-frankfurt.html',
'snippet': 'Demonstrators against economic austerity in Europe, organized by a group called Blockupy, immobilized a large part of central Frankfurt on Friday.',
'lead_paragraph': 'FRANKFURT — Demonstrators blocked a large swath of central Frankfurt on Friday to protest a variety of issues ranging from economic austerity in Europe to capitalism to labor conditions for workers in developing countries.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-articleLarge.jpg',
'height': 364,
'width': 600,
'legacy': {'xlarge': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 364},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-blog480.jpg',
'height': 291,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-blog427.jpg',
'height': 259,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-tmagArticle.jpg',
'height': 359,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-jumbo.jpg',
'height': 621,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-blog225.jpg',
'height': 136,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-master675.jpg',
'height': 409,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-master180.jpg',
'height': 109,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-popup.jpg',
'height': 394,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-blog533.jpg',
'height': 323,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-tmagSF.jpg',
'height': 219,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-slide.jpg',
'height': 364,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-superJumbo.jpg',
'height': 1242,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-master1050.jpg',
'height': 637,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-master495.jpg',
'height': 300,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-articleInline.jpg',
'height': 115,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-hpSmall.jpg',
'height': 99,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-blogSmallInline.jpg',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-mediumFlexible177.jpg',
'height': 107,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/06/01/world/01Frankfurt2_337/01Frankfurt2_337-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Protests Block Large Part of Central Frankfurt',
'kicker': None,
'content_kicker': None,
'print_headline': 'Protests Block Large Part of Central Frankfurt',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'European Central Bank',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Demonstrations, Protests, and Riots',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Occupy Wall Street',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'European Sovereign Debt Crisis (2010- )',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-05-31T09:51:55+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'Business Day',
'subsection_name': 'Global Business',
'byline': {'original': 'By Rhea Wessel',
'person': [{'firstname': 'Rhea',
'middlename': None,
'lastname': 'Wessel',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2e40deb9-c0d9-5f02-bd7e-bfd5f36eade9',
'word_count': 605,
'uri': 'nyt://article/2e40deb9-c0d9-5f02-bd7e-bfd5f36eade9'},
{'abstract': 'Yet another airline aims to accommodate people who can’t tolerate even the possibility of being seated near the chaos of youth.',
'web_url': 'https://parenting.blogs.nytimes.com/2013/08/29/a-new-airline-class-for-the-child-intolerant/',
'snippet': 'Yet another airline aims to accommodate people who can’t tolerate even the possibility of being seated near the chaos of youth.',
'lead_paragraph': 'My sister just returned from a plane trip with yet another tale of a cranky adult growling at a couple desperately trying to soothe their child. It was an hour-and-15-minute flight from Baltimore to Providence, R.I., and, even between two adults and a bag stuffed with toys and books, the parents couldn’t seem to stop the wails.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-blog480.png',
'height': 269,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-blog427.png',
'height': 239,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-jumbo.png',
'height': 305,
'width': 544,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-blog225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-master180.png',
'height': 101,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-popup.png',
'height': 305,
'width': 544,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-blog533.png',
'height': 299,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-tmagSF.png',
'height': 203,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-slide.png',
'height': 305,
'width': 544,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-superJumbo.png',
'height': 305,
'width': 544,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-master495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-articleInline.png',
'height': 107,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-hpSmall.png',
'height': 91,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-blogSmallInline.png',
'height': 85,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-mediumFlexible177.png',
'height': 99,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-sfSpan.png',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-hpLarge.png',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-videoHpMedium.png',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/25/style/motherlode-singapore-air/motherlode-singapore-air-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A New Airline Class for the Child-Intolerant',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'organizations', 'value': 'AIRASIA', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Malaysia Airlines',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Singapore Airlines',
'rank': 6,
'major': 'N'}],
'pub_date': '2013-08-29T15:07:29+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Hope Reeves',
'person': [{'firstname': 'Hope',
'middlename': None,
'lastname': 'Reeves',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/90241077-0795-5547-b9fb-5a9851655abb',
'word_count': 558,
'uri': 'nyt://article/90241077-0795-5547-b9fb-5a9851655abb'}],
[{'abstract': 'Fill in the blanks in the first eight paragraphs of the article “For Demi Lovato, No Airbrushing Required” by Nicole LaPorte.',
'web_url': 'https://learning.blogs.nytimes.com/2013/03/11/fill-in-for-demi-lovato-no-airbrushing-required/',
'snippet': 'Fill in the blanks in the first eight paragraphs of the article “For Demi Lovato, No Airbrushing Required” by Nicole LaPorte.',
'lead_paragraph': 'Directions: Fill in the blanks in the first eight paragraphs of the article “For Demi Lovato, No Airbrushing Required” by Nicole LaPorte.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-articleLarge.jpg',
'height': 198,
'width': 600,
'legacy': {'xlarge': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 198},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-blog480.jpg',
'height': 158,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-blog427.jpg',
'height': 141,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-tmagArticle.jpg',
'height': 195,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-jumbo.jpg',
'height': 337,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-blog225.jpg',
'height': 74,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-popup.jpg',
'height': 214,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-blog533.jpg',
'height': 176,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-tmagSF.jpg',
'height': 119,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-slide.jpg',
'height': 198,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-superJumbo.jpg',
'height': 675,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-articleInline.jpg',
'height': 63,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-hpSmall.jpg',
'height': 54,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-blogSmallInline.jpg',
'height': 50,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-mediumFlexible177.jpg',
'height': 58,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-sfSpan-v2.jpg',
'height': 130,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-largeHorizontal375-v2.jpg',
'height': 124,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/fashion/10JPDEMI1-LN/10JPDEMI1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Fill-In | For Demi Lovato, No Airbrushing Required',
'kicker': 'The Learning Network',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2013-03-11T18:09:09+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Education',
'byline': {'original': 'By Shannon Doyne',
'person': [{'firstname': 'Shannon',
'middlename': None,
'lastname': 'Doyne',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0c0afc29-d94c-5b6f-864c-fdaecb6c2e37',
'word_count': 590,
'uri': 'nyt://article/0c0afc29-d94c-5b6f-864c-fdaecb6c2e37'},
{'abstract': 'Facebook and free will.',
'web_url': 'https://www.nytimes.com/2013/08/04/magazine/tmb-too-much-baby.html',
'snippet': 'Facebook and free will.',
'lead_paragraph': ' Many of my friends on Facebook are having babies. Nearly every time I log on, I see (in my news feed) many pictures of these babies, almost to the point of oversharing. Now, I love babies and feel it’s acceptable to post a photo from a holiday gathering or a first picture of a newborn. But when this happens every day from a specific acquaintance, is it a violation of the baby’s privacy? The baby did not sign up for a Facebook account, does not understand the concept of Facebook and obviously was not asked permission to have its pictures on the site. R. D., MANALAPAN, N.J.',
'print_section': 'MM',
'print_page': '16',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/02/02/magazine/ethicist/ethicist-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-articleLarge.jpg',
'height': 1316,
'width': 600,
'legacy': {'xlarge': 'images/2014/02/02/magazine/ethicist/ethicist-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 1316},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-blog480.jpg',
'height': 1053,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-blog427.jpg',
'height': 936,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-tmagArticle.jpg',
'height': 1298,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-jumbo.jpg',
'height': 1024,
'width': 467,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-blog225.jpg',
'height': 493,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-master675.jpg',
'height': 1480,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-master180.jpg',
'height': 395,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-popup.jpg',
'height': 500,
'width': 229,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-blog533.jpg',
'height': 1169,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-tmagSF.jpg',
'height': 794,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-slide.jpg',
'height': 500,
'width': 229,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-superJumbo.jpg',
'height': 2048,
'width': 934,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-master495.jpg',
'height': 1085,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-articleInline.jpg',
'height': 417,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-hpSmall.jpg',
'height': 357,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-blogSmallInline.jpg',
'height': 331,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-mediumFlexible177.jpg',
'height': 388,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/02/02/magazine/ethicist/ethicist-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/02/02/magazine/ethicist/ethicist-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'T.M.B. (Too Much Baby)',
'kicker': None,
'content_kicker': None,
'print_headline': 'T.M.B. (Too Much Baby)',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Klosterman, Chuck',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Ethics (Personal)', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Privacy', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Facebook Inc',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Ethicist, The (Times Column)',
'rank': 6,
'major': 'N'}],
'pub_date': '2013-08-02T09:00:07+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Chuck Klosterman',
'person': [{'firstname': 'Chuck',
'middlename': None,
'lastname': 'Klosterman',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Question',
'_id': 'nyt://article/e32463fd-7b99-59f9-9528-a75348330fc7',
'word_count': 661,
'uri': 'nyt://article/e32463fd-7b99-59f9-9528-a75348330fc7'},
{'abstract': 'Books on three prominent graduates of the Little Red School House in Greenwich Village and the competition to host the United Nations.',
'web_url': 'https://www.nytimes.com/2013/03/10/nyregion/books-on-3-little-red-school-house-alumni-and-the-united-nations.html',
'snippet': 'Books on three prominent graduates of the Little Red School House in Greenwich Village and the competition to host the United Nations.',
'lead_paragraph': 'No wonder they called it the Little Red School House.',
'print_section': 'MB',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/03/10/nyregion/10BOOK/10BOOK-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-articleLarge.jpg',
'height': 701,
'width': 600,
'legacy': {'xlarge': 'images/2013/03/10/nyregion/10BOOK/10BOOK-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 701},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-blog480.jpg',
'height': 561,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-blog427.jpg',
'height': 499,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-tmagArticle.jpg',
'height': 691,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-jumbo.jpg',
'height': 744,
'width': 637,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-blog225.jpg',
'height': 263,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-popup.jpg',
'height': 500,
'width': 429,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-blog533.jpg',
'height': 623,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-tmagSF.jpg',
'height': 423,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-slide.jpg',
'height': 500,
'width': 429,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-superJumbo.jpg',
'height': 744,
'width': 637,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-articleInline.jpg',
'height': 222,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-hpSmall.jpg',
'height': 190,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-blogSmallInline.jpg',
'height': 176,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-mediumFlexible177.jpg',
'height': 207,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/03/10/nyregion/10BOOK/10BOOK-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/03/10/nyregion/10BOOK/10BOOK-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'In a Private School, Seeds of Dissent',
'kicker': 'Bookshelf',
'content_kicker': None,
'print_headline': 'In a Private School, Seeds of Dissent',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Little Red School House',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'United Nations',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Hampton, Dina', 'rank': 8, 'major': 'N'}],
'pub_date': '2013-03-09T03:43:55+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Sam Roberts',
'person': [{'firstname': 'Sam',
'middlename': None,
'lastname': 'Roberts',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9b6af8f2-fd45-5e2d-8ad1-7cf43d45886b',
'word_count': 589,
'uri': 'nyt://article/9b6af8f2-fd45-5e2d-8ad1-7cf43d45886b'},
{'abstract': 'Despite corroborating medical evidence, Bangalore police took five days to arrest the diplomat charged with raping his 3-year-old daughter.',
'web_url': 'https://india.blogs.nytimes.com/2012/06/20/french-diplomat-rape-case/',
'snippet': 'Despite corroborating medical evidence, Bangalore police took five days to arrest the diplomat charged with raping his 3-year-old daughter.',
'lead_paragraph': 'The boundaries of diplomatic immunity were brought into sharp relief this past week with news that a French diplomat had been accused by his wife of raping their 3-year-old daughter. Despite the wife’s testimony and some corroborating medical evidence, Bangalore police took five days to arrest the diplomat because of worries over his diplomatic status.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Confusion Over Diplomatic Immunity Delays Arrest in Rape Case',
'kicker': 'India Ink',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Domestic Violence',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Sex Crimes', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Traffic and Parking Violations',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Police Department (NYC)',
'rank': 4,
'major': 'N'},
{'name': 'glocations',
'value': 'Bangalore (India)',
'rank': 5,
'major': 'N'},
{'name': 'glocations', 'value': 'France', 'rank': 6, 'major': 'N'},
{'name': 'glocations',
'value': 'Karnataka (India)',
'rank': 7,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 8, 'major': 'N'}],
'pub_date': '2012-06-20T13:51:12+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Hari Kumar',
'person': [{'firstname': 'Hari',
'middlename': None,
'lastname': 'Kumar',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3c031b19-6a99-5ae0-be2c-18f3b11d4df8',
'word_count': 528,
'uri': 'nyt://article/3c031b19-6a99-5ae0-be2c-18f3b11d4df8'},
{'abstract': 'Are you tired of photos from overly proud new parents? Here’s the answer.',
'web_url': 'https://www.nytimes.com/2012/08/09/fashion/unbabyme-keeps-baby-pictures-off-facebook.html',
'snippet': 'Are you tired of photos from overly proud new parents? Here’s the answer.',
'lead_paragraph': 'BRANDY CASWELL, 28, turns to Facebook to keep up with her friends. But in the last year or so, she found that her newsfeed was being overrun with baby photos, documenting everything from nap times to diaper changes. ',
'print_section': 'E',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09zNOTED-blog480.jpg',
'height': 334,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09zNOTED-jumbo.jpg',
'height': 712,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09zNOTED-superJumbo.jpg',
'height': 1043,
'width': 1500,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09zNOTED-sfSpan.jpg',
'height': 275,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/09/fashion/09NOTED_SPAN/09NOTED_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Making Facebook Less Infantile',
'kicker': 'Noted',
'content_kicker': None,
'print_headline': 'Making Facebook Less Infantile',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Blogs and Blogging (Internet)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Social Networking (Internet)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Photography', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Facebook Inc',
'rank': 5,
'major': 'N'}],
'pub_date': '2012-08-08T21:23:49+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Austin Considine',
'person': [{'firstname': 'Austin',
'middlename': None,
'lastname': 'Considine',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a91bfccf-01b1-5573-ab8b-95d95a365ca9',
'word_count': 559,
'uri': 'nyt://article/a91bfccf-01b1-5573-ab8b-95d95a365ca9'},
{'abstract': 'The Wirecutter Deals team scans the virtual aisles of the Internet, searching for great discounts on Wirecutter-recommended products so you don’t have to. In our deal blogs (like this one), we highlight the discounts that we think Wirecutter readers will love. For more deals content, check out our Deals page, follow us on Twitter @WirecutterDeals,...',
'web_url': 'https://www.nytimes.com/wirecutter/money/baby-gear-deals/',
'snippet': 'The Wirecutter Deals team scans the virtual aisles of the Internet, searching for great discounts on Wirecutter-recommended products so you don’t have to. In our deal blogs (like this one), we highlight the discounts that we think Wirecutter reade...',
'lead_paragraph': 'The Wirecutter Deals team scans the virtual aisles of the Internet, searching for great discounts on Wirecutter-recommended products so you don’t have to. In our deal blogs (like this one), we highlight the discounts that we think Wirecutter readers will love. For more deals content, check out our Deals page, follow us on Twitter @WirecutterDeals,...',
'source': 'Wirecutter',
'multimedia': [{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/01/doublestrollers-lowres-1010066.jpg?auto=webp&width=440&crop=3:2',
'height': 294,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo330',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/01/doublestrollers-lowres-1010066.jpg?auto=webp&width=330&crop=3:2',
'height': 220,
'width': 330,
'legacy': {},
'subType': 'mediumThreeByTwo330',
'crop_name': 'mediumThreeByTwo330'},
{'rank': 0,
'subtype': 'smallThreeByTwo200',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/01/doublestrollers-lowres-1010066.jpg?auto=webp&width=200&crop=3:2',
'height': 134,
'width': 200,
'legacy': {},
'subType': 'smallThreeByTwo200',
'crop_name': 'smallThreeByTwo200'},
{'rank': 0,
'subtype': 'smallestThreeByTwo120',
'caption': None,
'credit': None,
'type': 'image',
'url': 'wp-content/uploads/2018/01/doublestrollers-lowres-1010066.jpg?auto=webp&width=120&crop=3:2',
'height': 80,
'width': 120,
'legacy': {},
'subType': 'smallestThreeByTwo120',
'crop_name': 'smallestThreeByTwo120'}],
'headline': {'main': 'The Best Baby Gear Deals We’ve Seen This Week',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2020-01-22T00:00:00+0000',
'document_type': 'wirecutterarticle',
'news_desk': '',
'byline': {'original': None, 'person': [], 'organization': None},
'_id': 'nyt://wirecutterarticle/947ae30e-7515-58a4-a48e-99d0548d6152',
'word_count': 0,
'uri': 'nyt://wirecutterarticle/947ae30e-7515-58a4-a48e-99d0548d6152'},
{'abstract': 'A federal judge’s decision on the labeling of aides for the elderly and disabled “companions” means an even longer wait for labor protections.',
'web_url': 'https://www.nytimes.com/2015/02/01/opinion/sunday/labor-rights-for-home-care-aides-are-delayed-yet-again.html',
'snippet': 'A federal judge’s decision on the labeling of aides for the elderly and disabled “companions” means an even longer wait for labor protections.',
'lead_paragraph': 'An enduring injustice was supposed to end on Jan. 1. That was the effective date for new rules by the Labor Department that would have required employers of home care aides for the elderly and disabled to pay at least the federal minimum wage and time and a half for overtime. Specifically, the new rules would have ended a federal regulation from 1974 that labeled home care aides “companions,” a designation that lets their employers — generally, for-profit agencies — ignore basic labor protections. ',
'print_section': 'SR',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Forty Years of Servitude, and Counting ',
'kicker': 'Editorial',
'content_kicker': None,
'print_headline': 'Forty Years of Servitude, and Counting',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Editorials',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Home Health Care', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Overtime', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Minimum Wage', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Wages and Salaries',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'Labor Department (US)',
'rank': 6,
'major': 'N'},
{'name': 'persons', 'value': 'Leon, Richard J', 'rank': 7, 'major': 'N'},
{'name': 'organizations',
'value': 'International Franchise Assn',
'rank': 8,
'major': 'N'}],
'pub_date': '2015-01-31T19:30:14+0000',
'document_type': 'article',
'news_desk': 'Editorial',
'section_name': 'Opinion',
'subsection_name': 'Sunday Review',
'byline': {'original': 'By The Editorial Board',
'person': [],
'organization': 'The Editorial Board'},
'type_of_material': 'Editorial',
'_id': 'nyt://article/c61330ed-de63-5d7e-bf4e-0b6b94b9e12c',
'word_count': 550,
'uri': 'nyt://article/c61330ed-de63-5d7e-bf4e-0b6b94b9e12c'},
{'abstract': 'This week’s Poetry Pairing matches “To My Dear and Loving Husband,” by Anne Bradstreet, with “Bound by Love and Disability, and Keeping a Vow Until the End,” a Metro column by Jim Dwyer.',
'web_url': 'https://learning.blogs.nytimes.com/2011/11/17/poetry/',
'snippet': 'This week’s Poetry Pairing matches “To My Dear and Loving Husband,” by Anne Bradstreet, with “Bound by Love and Disability, and Keeping a Vow Until the End,” a Metro column by Jim Dwyer.',
'lead_paragraph': 'This week’s Poetry Pairing matches Anne Bradstreet’s ‘To My Dear and Loving Husband” with a Metro column about a husband whose wife recently died.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Poetry Pairing | ‘To My Dear and Loving Husband’',
'kicker': 'The Learning Network',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2011-11-17T15:03:43+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Education',
'byline': {'original': 'By Rebecca Ruiz',
'person': [{'firstname': 'Rebecca',
'middlename': None,
'lastname': 'Ruiz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2722bff4-c422-5be8-8569-65132f57fee3',
'word_count': 549,
'uri': 'nyt://article/2722bff4-c422-5be8-8569-65132f57fee3'},
{'abstract': 'Ms. Levy’s father set a high bar for anyone she dated, but when Mr. Ryzowy first met her parents, it wasn’t the grilling he expected.',
'web_url': 'https://www.nytimes.com/2014/12/07/fashion/weddings/a-broadway-baby-takes-on-a-co-star.html',
'snippet': 'Ms. Levy’s father set a high bar for anyone she dated, but when Mr. Ryzowy first met her parents, it wasn’t the grilling he expected.',
'lead_paragraph': 'Amanda Claire Levy, the daughter of Tovah Feldshuh and Andrew H. Levy of Manhattan, was married Saturday evening to Joel Isaac Ryzowy, a son of Olga Ryzowy and Walter Ryzowy of Brooklyn. Rabbi J. Rolando Matalon led the ceremony at Three Sixty, an event space at the Tribeca Rooftop in Manhattan, with Cantor Ari Priven participating.',
'print_section': 'ST',
'print_page': '25',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-articleLarge.jpg',
'height': 437,
'width': 600,
'legacy': {'xlarge': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 437},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-blog480.jpg',
'height': 350,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-blog427.jpg',
'height': 311,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-tmagArticle.jpg',
'height': 431,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-jumbo.jpg',
'height': 746,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-blog225.jpg',
'height': 164,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-master675.jpg',
'height': 492,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-master180.jpg',
'height': 131,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-popup.jpg',
'height': 474,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-blog533.jpg',
'height': 388,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-tmagSF.jpg',
'height': 264,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-slide.jpg',
'height': 437,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-superJumbo.jpg',
'height': 1492,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-master1050.jpg',
'height': 765,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-master495.jpg',
'height': 361,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-master315.jpg',
'height': 230,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-articleInline.jpg',
'height': 138,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-hpSmall.jpg',
'height': 119,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-blogSmallInline.jpg',
'height': 110,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-mediumFlexible177.jpg',
'height': 129,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/07/fashion/weddings/7LEVY/7LEVY-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A Broadway Baby Takes on a Co-Star',
'kicker': 'Amanda Levy and Joel Ryzowy',
'content_kicker': None,
'print_headline': 'A Broadway Baby Takes on a Co-Star',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Weddings and Engagements',
'rank': 1,
'major': 'N'}],
'pub_date': '2014-12-07T05:15:04+0000',
'document_type': 'article',
'news_desk': 'Society',
'section_name': 'Fashion & Style',
'subsection_name': 'Weddings',
'byline': {'original': 'By Rosalie R. Radomsky',
'person': [{'firstname': 'Rosalie',
'middlename': 'R.',
'lastname': 'Radomsky',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/647c5fb6-01ca-5b01-8046-9b0cfa395c42',
'word_count': 566,
'uri': 'nyt://article/647c5fb6-01ca-5b01-8046-9b0cfa395c42'},
{'abstract': 'A $50,000 grant and more than $30,000 in donations will allow a women’s shelter in a remote Alaskan Native village to continue operating.',
'web_url': 'https://www.nytimes.com/2012/07/06/us/alaskan-womens-shelter-can-reopen-with-grant.html',
'snippet': 'A $50,000 grant and more than $30,000 in donations will allow a women’s shelter in a remote Alaskan Native village to continue operating.',
'lead_paragraph': 'A $50,000 emergency grant from the federal government and more than $30,000 in donations from the public will allow a women’s shelter in an isolated Alaskan village to continue operating after it ran out of money and had to close, officials said.',
'print_section': 'A',
'print_page': '15',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/07/06/us/JP-EMMONAK/JP-EMMONAK-blog480.jpg',
'height': 448,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/07/06/us/JP-EMMONAK/JP-EMMONAK-jumbo.jpg',
'height': 956,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/07/06/us/JP-EMMONAK/JP-EMMONAK-popup.jpg',
'height': 607,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/07/06/us/JP-EMMONAK/JP-EMMONAK-superJumbo.jpg',
'height': 1911,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/07/06/us/JP-EMMONAK/JP-EMMONAK-articleInline.jpg',
'height': 177,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'}],
'headline': {'main': 'With Grant, an Alaska Women’s Shelter Can Reopen',
'kicker': None,
'content_kicker': None,
'print_headline': 'With Grant, an Alaska Women’s Shelter Can Reopen',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'ALASKA',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Women and Girls', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Domestic Violence', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Sex Crimes', 'rank': 4, 'major': 'N'}],
'pub_date': '2012-07-06T01:47:29+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Timothy Williams',
'person': [{'firstname': 'Timothy',
'middlename': None,
'lastname': 'Williams',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/25a0c9b9-efff-5d77-8bd9-52e04ae02612',
'word_count': 598,
'uri': 'nyt://article/25a0c9b9-efff-5d77-8bd9-52e04ae02612'}],
[{'abstract': 'A community reels after a young father is killed by police in Geraldine Inoa’s unsettling play.',
'web_url': 'https://www.nytimes.com/2018/09/03/theater/review-scraps-geraldine-inoa-flea.html',
'snippet': 'A community reels after a young father is killed by police in Geraldine Inoa’s unsettling play.',
'lead_paragraph': 'Three months after her boyfriend died, gunned down by the police, Aisha is past the constant-crying phase of mourning. At 20, with their young son to look out for, she feels a grief subsumed in rage.',
'print_section': 'C',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/09/04/arts/04scraps2/04scraps2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-horizontalMediumAt2X.jpg',
'height': 3622,
'width': 5433,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-threeByTwoLargeAt2X.jpg',
'height': 3622,
'width': 5433,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/merlin_142349523_c8526ca3-38da-45ee-b8f6-88c6759321af-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/09/04/arts/04scraps2/04scraps2-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Review: Living, and Dying, While Black in ‘Scraps’',
'kicker': None,
'content_kicker': None,
'print_headline': 'For Those Left Behind, Invisible Wounds That Never Heal',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Theater',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Flea Theater',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Smith, Niegel', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Inoa, Geraldine', 'rank': 4, 'major': 'N'},
{'name': 'creative_works',
'value': 'Scraps (Play)',
'rank': 5,
'major': 'N'}],
'pub_date': '2018-09-03T16:58:01+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Theater',
'byline': {'original': 'By Laura Collins-Hughes',
'person': [{'firstname': 'Laura',
'middlename': None,
'lastname': 'Collins-Hughes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/b89086a0-7ab4-59d3-aebd-91e06b3be045',
'word_count': 552,
'uri': 'nyt://article/b89086a0-7ab4-59d3-aebd-91e06b3be045'},
{'abstract': 'At Nick’s Discount Store in Bath Beach, the merchandise includes lawn ornaments, skin lotion, pet supplies — and there’s a deli up front.',
'web_url': 'https://www.nytimes.com/2011/12/11/nyregion/a-brooklyn-store-offers-astounding-variety-with-patter.html',
'snippet': 'At Nick’s Discount Store in Bath Beach, the merchandise includes lawn ornaments, skin lotion, pet supplies — and there’s a deli up front.',
'lead_paragraph': 'NOT all of Brooklyn glows with gentrification. Deep in the borough’s southwest pocket is Bath Beach, a few dozen blocks sandwiched between Bensonhurst and the Belt Parkway. Shuttered storefronts and signs in competing languages testify to economic hardship and ethnic flux. But amid the comings and goings is a monument to fortitude: Nick’s Discount Store. ',
'print_section': 'MB',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/12/11/nyregion/11JOINT1/11JOINT1-articleLarge.jpg',
'height': 350,
'width': 600,
'legacy': {'xlarge': 'images/2011/12/11/nyregion/11JOINT1/11JOINT1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 350},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/12/11/nyregion/11JOINT1/11JOINT1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/12/11/nyregion/11JOINT1/11JOINT1-jumbo.jpg',
'height': 947,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/12/11/nyregion/11JOINT1/11JOINT1-articleLarge.jpg',
'height': 350,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/12/11/nyregion/11JOINT1/11JOINT1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/12/11/nyregion/11JOINT1/11JOINT1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'A Brooklyn Store Offers Astounding Variety, With Patter',
'kicker': 'Neighborhood Joint',
'content_kicker': None,
'print_headline': 'Pet Supplies? Yarn? Patter? ‘I Got That’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Discount Selling',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Delicatessens', 'rank': 2, 'major': 'N'},
{'name': 'glocations',
'value': 'Bath Beach (NYC)',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-12-08T22:14:24+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Andrew Cotto',
'person': [{'firstname': 'Andrew',
'middlename': None,
'lastname': 'Cotto',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/73f31c9a-022f-5a77-85b4-75f2731ac467',
'word_count': 581,
'uri': 'nyt://article/73f31c9a-022f-5a77-85b4-75f2731ac467'},
{'abstract': 'A super-modern addition to the classic downtown hotels, with a stylistic flair befitting the Asian influences on the city.',
'web_url': 'https://www.nytimes.com/2011/02/20/travel/20checkin-fairmont.html',
'snippet': 'A super-modern addition to the classic downtown hotels, with a stylistic flair befitting the Asian influences on the city.',
'lead_paragraph': 'THE BASICS',
'print_section': 'TR',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-articleLarge.jpg',
'height': 360,
'width': 600,
'legacy': {'xlarge': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 360},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-jumbo.jpg',
'height': 800,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-popup.jpg',
'height': 508,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-articleInline.jpg',
'height': 149,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-sfSpan.jpg',
'height': 309,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/02/20/travel/sub-20-CHEKIN/sub-20-CHEKIN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Hotel Review: Fairmont Pacific Rim in Vancouver',
'kicker': 'Check In/Check Out ',
'content_kicker': None,
'print_headline': 'Vancouver: Fairmont Pacific Rim',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Vancouver (British Columbia)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'HOTELS AND MOTELS',
'rank': 3,
'major': 'N'}],
'pub_date': '2011-02-18T19:55:18+0000',
'document_type': 'article',
'news_desk': 'Travel',
'section_name': 'Travel',
'byline': {'original': 'By Bonnie Tsui',
'person': [{'firstname': 'Bonnie',
'middlename': None,
'lastname': 'Tsui',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1fade9c3-d225-5588-8c95-df257f1b727a',
'word_count': 568,
'uri': 'nyt://article/1fade9c3-d225-5588-8c95-df257f1b727a'},
{'abstract': 'In Park Slope, a Brooklyn neighborhood renowned for its abundance of children, even the barrooms have been infiltrated by little people.',
'web_url': 'https://cityroom.blogs.nytimes.com/2010/01/15/complaint-box-baby-barflies/',
'snippet': 'In Park Slope, a Brooklyn neighborhood renowned for its abundance of children, even the barrooms have been infiltrated by little people.',
'lead_paragraph': 'As a 5-foot-4, dark-haired Jewish girl in her early 20s, I was never a minority in New York City until I moved to Park Slope, Brooklyn, where I seem to be one of the few childless residents.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Complaint Box | Baby Barflies',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-01-15T17:36:06+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Risa Chubinsky',
'person': [{'firstname': 'Risa',
'middlename': None,
'lastname': 'Chubinsky',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/c648653a-000d-541f-b679-3ef5e7ef1efd',
'word_count': 595,
'uri': 'nyt://article/c648653a-000d-541f-b679-3ef5e7ef1efd'},
{'abstract': 'My mom tells me that my dad has always been great with children. But that’s not what I remember.',
'web_url': 'https://parenting.blogs.nytimes.com/2015/02/27/my-dad-strict-my-daughters-papa-not-so-much/',
'snippet': 'My mom tells me that my dad has always been great with children. But that’s not what I remember.',
'lead_paragraph': 'I have always had a complicated relationship with my father. As the oldest of four children and the only girl, I resented my dad’s rigidity, his chauvinism, the perceived preference shown to my younger brothers. When it came to housework, I was relegated to the “girl” chores, which meant I regularly spent an hour washing the family’s dishes, compared with my brother’s 15 minutes of taking out the garbage and sweeping the floors. When I was a little older I was stuck at home watching my eight-years-younger twin brothers, while my brother was absolved from caregiving duties because he was “too irresponsible.”',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-watch308.jpg',
'height': 350,
'width': 308,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-watch268.jpg',
'height': 305,
'width': 268,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-articleLarge.jpg',
'height': 397,
'width': 600,
'legacy': {'xlarge': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 397},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-blog480.jpg',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-blog427.jpg',
'height': 283,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-tmagArticle.jpg',
'height': 392,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-jumbo.jpg',
'height': 678,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-blog225.jpg',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-master675.jpg',
'height': 447,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-master180.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-popup.jpg',
'height': 431,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-blog533.jpg',
'height': 353,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-tmagSF.jpg',
'height': 240,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-slide.jpg',
'height': 397,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-superJumbo.jpg',
'height': 1356,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-master1050.jpg',
'height': 695,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-master495.jpg',
'height': 328,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-master315.jpg',
'height': 209,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-hpSmall.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-blogSmallInline.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-mediumFlexible177.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/02/27/us/motherlode-papa2/motherlode-papa2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'My Dad: Strict. My Daughter’s ‘Papa’? Not So Much.',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Grandparents',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'}],
'pub_date': '2015-02-27T17:34:52+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'U.S.',
'byline': {'original': 'By Kristina Lynch',
'person': [{'firstname': 'Kristina',
'middlename': None,
'lastname': 'Lynch',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/66f21a4a-b1f3-5b06-95af-0af1e8ca1c66',
'word_count': 544,
'uri': 'nyt://article/66f21a4a-b1f3-5b06-95af-0af1e8ca1c66'},
{'abstract': 'The push by Pinduoduo to lower prices has helped it become one of China’s fastest-growing e-commerce apps, and epitomizes a broader force plaguing the economy.',
'web_url': 'https://www.nytimes.com/2024/10/07/business/china-pinduoduo-ecommerce.html',
'snippet': 'The push by Pinduoduo to lower prices has helped it become one of China’s fastest-growing e-commerce apps, and epitomizes a broader force plaguing the economy.',
'lead_paragraph': 'When Lin Yunyun started selling diapers two years ago on Pinduoduo, China’s fast-growing e-commerce site, she was not prepared for the relentless nagging about prices.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-horizontalMediumAt2X.jpg',
'height': 4000,
'width': 6000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-threeByTwoLargeAt2X.jpg',
'height': 4000,
'width': 6000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'},
{'rank': 0,
'subtype': 'googleFourByThree',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2024/10/04/multimedia/00china-deflation-06-ktjl/00china-deflation-06-ktjl-googleFourByThree.jpg',
'height': 600,
'width': 800,
'legacy': {},
'subType': 'googleFourByThree',
'crop_name': 'googleFourByThree'}],
'headline': {'main': 'How E-Commerce Is Making China’s Deflation Worse',
'kicker': None,
'content_kicker': None,
'print_headline': 'China Haven For Bargains Is Also Fuel for Deflation',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'China',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Deflation (Economics)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'E-Commerce', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Discount Selling', 'rank': 7, 'major': 'N'},
{'name': 'subject', 'value': 'Consumer Behavior', 'rank': 8, 'major': 'N'},
{'name': 'subject',
'value': 'Computers and the Internet',
'rank': 9,
'major': 'N'},
{'name': 'organizations',
'value': 'Pinduoduo (Mobile App)',
'rank': 10,
'major': 'N'},
{'name': 'organizations',
'value': 'Temu (Website)',
'rank': 11,
'major': 'N'},
{'name': 'organizations',
'value': 'Alibaba Group Holding Ltd',
'rank': 12,
'major': 'N'},
{'name': 'organizations', 'value': 'Taobao', 'rank': 13, 'major': 'N'},
{'name': 'organizations', 'value': 'JD.com', 'rank': 14, 'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 15,
'major': 'N'}],
'pub_date': '2024-10-07T04:01:24+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Daisuke Wakabayashi and Claire Fu',
'person': [{'firstname': 'Daisuke',
'middlename': None,
'lastname': 'Wakabayashi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Claire',
'middlename': None,
'lastname': 'Fu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/61dc1975-a346-585f-b8ce-5b034d78c404',
'word_count': 1240,
'uri': 'nyt://article/61dc1975-a346-585f-b8ce-5b034d78c404'},
{'abstract': 'While the news that a court had struck down Proposition 8 was welcome, many same-sex couples celebrating Family Week faced more pressing issues \x97 like play dates and parenting workshops.',
'web_url': 'https://www.nytimes.com/2010/08/08/us/08gays.html',
'snippet': 'While the news that a court had struck down Proposition 8 was welcome, many same-sex couples celebrating Family Week faced more pressing issues \x97 like play dates and parenting workshops.',
'lead_paragraph': 'PROVINCETOWN, Mass. \x97 It is not that vacationers at the tip of Cape Cod were indifferent to news that a federal judge had struck down Proposition 8, California’s ban on same-sex marriage. Far from it. But for many same-sex couples, the more pressing issues last week had to do with setting up play dates and getting sand out of diapers. ',
'print_section': 'A',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Gay Couples Cheer Ruling on Marriage',
'kicker': None,
'content_kicker': None,
'print_headline': 'Gay Couples Gathering in Massachusetts Cheer Judge’s Ruling on Marriage',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Referendums',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Youth',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Same-Sex Marriage, Civil Unions and Domestic Partnerships',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Homosexuality', 'rank': 4, 'major': 'N'}],
'pub_date': '2010-08-07T23:07:53+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By David W. Dunlap',
'person': [{'firstname': 'David',
'middlename': 'W.',
'lastname': 'Dunlap',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/746a01a9-3c90-5bdd-874c-a4163a47da6a',
'word_count': 552,
'uri': 'nyt://article/746a01a9-3c90-5bdd-874c-a4163a47da6a'},
{'abstract': 'He has crafted a political style that emphasizes being present for the issues he’s fighting for.',
'web_url': 'https://www.nytimes.com/2019/07/06/us/politics/cory-booker-tv-radio.html',
'snippet': 'He has crafted a political style that emphasizes being present for the issues he’s fighting for.',
'lead_paragraph': 'Senator Cory Booker, tieless and in a blazer on the southwestern border in early July, approached a Customs and Border Protection officer, blue passport in hand. They greeted each other and the officer asked: “Is there somebody with you?” Yes, Mr. Booker said, he had a group with him.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/07/06/us/politics/06booker/06booker-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-horizontalMediumAt2X.jpg',
'height': 3256,
'width': 4883,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-threeByTwoLargeAt2X.jpg',
'height': 3256,
'width': 4883,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Cory Booker’s Brand of Advocacy: Show Up. Cameras Often Follow.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Booker, Cory A',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'City Councils', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Newark (NJ)', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'News and News Media',
'rank': 8,
'major': 'N'},
{'name': 'glocations', 'value': 'Mexico', 'rank': 9, 'major': 'N'}],
'pub_date': '2019-07-06T09:00:09+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Nick Corasaniti',
'person': [{'firstname': 'Nick',
'middlename': None,
'lastname': 'Corasaniti',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/11e01c8d-4b5b-5ffc-a5a4-cb1d58542136',
'word_count': 1278,
'uri': 'nyt://article/11e01c8d-4b5b-5ffc-a5a4-cb1d58542136'},
{'abstract': 'Christopher Scott, the owner of Brooklyn Commune, is one of the volunteer chefs who will be responsible for feeding the Brooklyn Tabernacle Choir, which is performing at President Obama’s second inauguration.',
'web_url': 'https://cityroom.blogs.nytimes.com/2013/01/18/in-a-mobile-kitchen-bringing-brooklyn-love-to-a-presidents-choir/',
'snippet': 'Christopher Scott, the owner of Brooklyn Commune, is one of the volunteer chefs who will be responsible for feeding the Brooklyn Tabernacle Choir, which is performing at President Obama’s second inauguration.',
'lead_paragraph': 'When the Grammy award-winning Brooklyn Tabernacle Choir performs “The Battle Hymn of the Republic” at President Obama’s second inauguration on Monday, one thing is for sure: They are not going to be singing on empty stomachs. ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-superJumbo.jpg',
'height': 1363,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18chef-cityroom/18chef-cityroom-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'In a Mobile Kitchen, Bringing ‘Brooklyn Love’ to a President’s Choir',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Chefs', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Inaugurations', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Obama, Barack', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'Brooklyn Tabernacle Choir',
'rank': 4,
'major': 'N'}],
'pub_date': '2013-01-18T18:16:38+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Ann Farmer',
'person': [{'firstname': 'Ann',
'middlename': None,
'lastname': 'Farmer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d4c61ce9-a829-5e4d-ad75-142dea687012',
'word_count': 563,
'uri': 'nyt://article/d4c61ce9-a829-5e4d-ad75-142dea687012'},
{'abstract': 'The arrest of a man who the authorities say is a mob associate with a colorful nickname brings reminders of some others with monikers quite distant from the names on their birth certificates.',
'web_url': 'https://cityroom.blogs.nytimes.com/2013/01/17/2-papa-smurfs-a-reputed-wise-guy-and-a-reputed-wiseguy/',
'snippet': 'The arrest of a man who the authorities say is a mob associate with a colorful nickname brings reminders of some others with monikers quite distant from the names on their birth certificates.',
'lead_paragraph': 'One of them is believed by the authorities to be a mob associate who extorted owners of garbage-hauling companies in New York City suburbs. The other is believed to be at least 542 years old, very short and wise, with blue skin and a white beard. ',
'print_section': 'A',
'print_page': '19',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/01/18/nyregion/18cityroom/18cityroom-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-articleLarge.jpg',
'height': 271,
'width': 600,
'legacy': {'xlarge': 'images/2013/01/18/nyregion/18cityroom/18cityroom-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 271},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-blog480.jpg',
'height': 217,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-blog427.jpg',
'height': 193,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-tmagArticle.jpg',
'height': 268,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-jumbo.jpg',
'height': 463,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-popup.jpg',
'height': 294,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-blog533.jpg',
'height': 241,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-tmagSF.jpg',
'height': 164,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-slide.jpg',
'height': 271,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-superJumbo.jpg',
'height': 926,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-articleInline.jpg',
'height': 86,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-hpSmall.jpg',
'height': 74,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-blogSmallInline.jpg',
'height': 68,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/01/18/nyregion/18cityroom/18cityroom-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/18/nyregion/18cityroom/18cityroom-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': '2 Papa Smurfs: A Reputed Wise Guy and a Reputed Wiseguy',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': 'Long Line of Reputed Mobsters Dragging Nicknames Through Mud',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Names, Personal',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Organized Crime', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Franco, Carmine', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 4, 'major': 'N'}],
'pub_date': '2013-01-17T23:46:14+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Michael Wilson',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Wilson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/8e596adc-2176-5b92-a4e6-09759895d7c8',
'word_count': 570,
'uri': 'nyt://article/8e596adc-2176-5b92-a4e6-09759895d7c8'}],
[{'abstract': 'With visitors banned, family members are in a panic: Who will feed their parents? Who will change the sheets?',
'web_url': 'https://www.nytimes.com/2020/03/31/nyregion/coronavirus-nursing-homes-nyc.html',
'snippet': 'With visitors banned, family members are in a panic: Who will feed their parents? Who will change the sheets?',
'lead_paragraph': 'For five years, twin sisters in Brooklyn have visited their 105-year-old mother every night in her nursing home, bringing dinner and feeding her, overseeing her medications. That stopped two weeks ago, when nursing homes barred visitors to keep out the coronavirus. Now the sisters have no idea what condition their mother is in or whether anyone is taking care of her.',
'print_section': 'MB',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-articleLarge.jpg',
'height': 898,
'width': 600,
'legacy': {'xlarge': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 898},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-popup.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-blog480.jpg',
'height': 719,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-blog533.jpg',
'height': 798,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-blog427.jpg',
'height': 639,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-tmagSF.jpg',
'height': 542,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-tmagArticle.jpg',
'height': 886,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-slide.jpg',
'height': 500,
'width': 334,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-jumbo.jpg',
'height': 1024,
'width': 685,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-superJumbo.jpg',
'height': 2000,
'width': 1336,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-blog225.jpg',
'height': 337,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-master1050.jpg',
'height': 1572,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-master675.jpg',
'height': 1010,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-master495.jpg',
'height': 741,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-master180.jpg',
'height': 269,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-master315.jpg',
'height': 472,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-master768.jpg',
'height': 1150,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumSquareAt3X.jpg',
'height': 1336,
'width': 1336,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-horizontalMediumAt2X.jpg',
'height': 890,
'width': 1336,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-threeByTwoLargeAt2X.jpg',
'height': 890,
'width': 1336,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-threeByTwoMediumAt2X.jpg',
'height': 890,
'width': 1336,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-articleInline.jpg',
'height': 284,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-hpSmall.jpg',
'height': 244,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-blogSmallInline.jpg',
'height': 226,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mediumFlexible177.jpg',
'height': 265,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoSixteenByNineJumbo1600.jpg',
'height': 751,
'width': 1336,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/03/27/nyregion/00nursingvisitors3/00nursingvisitors3-mobileMasterAt3x.jpg',
'height': 2000,
'width': 1336,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'She’s Alone, 105 and in a Nursing Home Threatened by the Virus',
'kicker': None,
'content_kicker': None,
'print_headline': 'Nursing Homes Nearing Crisis',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Nursing Homes', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Protective Clothing and Gear',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Shortages', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Quarantines', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 6,
'major': 'N'},
{'name': 'subject', 'value': 'Epidemics', 'rank': 7, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 8, 'major': 'N'}],
'pub_date': '2020-03-31T09:00:19+0000',
'document_type': 'article',
'news_desk': 'Metropolitan',
'section_name': 'New York',
'byline': {'original': 'By John Leland',
'person': [{'firstname': 'John',
'middlename': None,
'lastname': 'Leland',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/38414d68-970a-5039-a48a-591cd02471d3',
'word_count': 1221,
'uri': 'nyt://article/38414d68-970a-5039-a48a-591cd02471d3'},
{'abstract': 'He has crafted a political style that emphasizes being present for the issues he’s fighting for.',
'web_url': 'https://www.nytimes.com/2019/07/06/us/politics/cory-booker-tv-radio.html',
'snippet': 'He has crafted a political style that emphasizes being present for the issues he’s fighting for.',
'lead_paragraph': 'Senator Cory Booker, tieless and in a blazer on the southwestern border in early July, approached a Customs and Border Protection officer, blue passport in hand. They greeted each other and the officer asked: “Is there somebody with you?” Yes, Mr. Booker said, he had a group with him.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/07/06/us/politics/06booker/06booker-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-horizontalMediumAt2X.jpg',
'height': 3256,
'width': 4883,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-threeByTwoLargeAt2X.jpg',
'height': 3256,
'width': 4883,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/merlin_157440147_98235e5d-0eff-4d8f-a167-91d221570166-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/07/06/us/politics/06booker/06booker-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Cory Booker’s Brand of Advocacy: Show Up. Cameras Often Follow.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Booker, Cory A',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2020',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'United States Politics and Government',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Immigration and Emigration',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'City Councils', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Customs and Border Protection (US)',
'rank': 6,
'major': 'N'},
{'name': 'glocations', 'value': 'Newark (NJ)', 'rank': 7, 'major': 'N'},
{'name': 'subject',
'value': 'News and News Media',
'rank': 8,
'major': 'N'},
{'name': 'glocations', 'value': 'Mexico', 'rank': 9, 'major': 'N'}],
'pub_date': '2019-07-06T09:00:09+0000',
'document_type': 'article',
'news_desk': 'Politics',
'section_name': 'U.S.',
'subsection_name': 'Politics',
'byline': {'original': 'By Nick Corasaniti',
'person': [{'firstname': 'Nick',
'middlename': None,
'lastname': 'Corasaniti',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/11e01c8d-4b5b-5ffc-a5a4-cb1d58542136',
'word_count': 1278,
'uri': 'nyt://article/11e01c8d-4b5b-5ffc-a5a4-cb1d58542136'},
{'abstract': 'A pin in its diaper and a smartphone in its hand, the 19-foot inflatable was released above Parliament Square and soared for about two hours.',
'web_url': 'https://www.nytimes.com/2018/07/13/world/europe/uk-trump-protest-may.html',
'snippet': 'A pin in its diaper and a smartphone in its hand, the 19-foot inflatable was released above Parliament Square and soared for about two hours.',
'lead_paragraph': 'LONDON — Tens of thousands of demonstrators turned out in London alone. A “Trump Baby” balloon was launched into the sky above Parliament Square. Many people banged pots and pans and chanted slogans. Those were some of the ways people on Friday mounted protests at every stage of President Trump’s working visit to Britain.',
'print_section': 'A',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'London’s ‘Trump Baby’ Balloon Flies as Protests Take Off Across U.K.',
'kicker': None,
'content_kicker': None,
'print_headline': 'Satire and Helium in Hand, British Flock to Protests',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Trump, Donald J',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Demonstrations, Protests and Riots',
'rank': 2,
'major': 'N'},
{'name': 'glocations', 'value': 'Great Britain', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'United States International Relations',
'rank': 4,
'major': 'N'},
{'name': 'persons', 'value': 'May, Theresa M', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Politics and Government',
'rank': 6,
'major': 'N'},
{'name': 'subject',
'value': 'Great Britain Withdrawal from EU (Brexit)',
'rank': 7,
'major': 'N'}],
'pub_date': '2018-07-13T09:38:37+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Ceylan Yeginsu and Iliana Magra',
'person': [{'firstname': 'Ceylan',
'middlename': None,
'lastname': 'Yeginsu',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Iliana',
'middlename': None,
'lastname': 'Magra',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/97f9427b-450c-579f-aa2e-ec5e280c8451',
'word_count': 1316,
'uri': 'nyt://article/97f9427b-450c-579f-aa2e-ec5e280c8451'},
{'abstract': 'Sharing a bedroom can make nursing, changing diapers and comforting the baby easier at night. But many families eventually decide that it’s time for a move.',
'web_url': 'https://www.nytimes.com/article/baby-sleeps-own-room.html',
'snippet': 'Sharing a bedroom can make nursing, changing diapers and comforting the baby easier at night. But many families eventually decide that it’s time for a move.',
'lead_paragraph': 'This guide was originally published on May 20, 2019.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-superJumbo.jpg',
'height': 1033,
'width': 1550,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-horizontalMediumAt2X.jpg',
'height': 1033,
'width': 1550,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-threeByTwoLargeAt2X.jpg',
'height': 1033,
'width': 1550,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoSixteenByNineJumbo1600.jpg',
'height': 871,
'width': 1550,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/02/22/multimedia/00-parenting-guide-movechild/00-parenting-guide-movechild-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'}],
'headline': {'main': 'How to Move Your Child to a Separate Room',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Children and Childhood',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Sleep', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 5,
'major': 'N'},
{'name': 'organizations',
'value': 'AMERICAN ACADEMY OF PEDIATRICS',
'rank': 6,
'major': 'N'}],
'pub_date': '2020-04-17T22:40:42+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Guides',
'byline': {'original': 'By Roberta Kwok',
'person': [{'firstname': 'Roberta',
'middlename': None,
'lastname': 'Kwok',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/50c52efe-361a-5c1b-bc56-1b98bfd9707c',
'word_count': 1408,
'uri': 'nyt://article/50c52efe-361a-5c1b-bc56-1b98bfd9707c'},
{'abstract': 'Photogenic police officers and a man who playfully suggested firing guns at the storm were among the people Hurricane Irma introduced to the world.',
'web_url': 'https://www.nytimes.com/2017/09/16/us/irma-chainsaw-nun-hot-cops.html',
'snippet': 'Photogenic police officers and a man who playfully suggested firing guns at the storm were among the people Hurricane Irma introduced to the world.',
'lead_paragraph': 'A perhaps unexpected person trying to clear a road with a chain saw. Police officers who were appreciated for being easy on the eyes. A jokester who lost control of his joke. A sheriff bent on checking for active arrest warrants. A mother in peril who relied on the kindness of others.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-articleInline.jpg',
'height': 186,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-hpSmall.jpg',
'height': 160,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-blogSmallInline.jpg',
'height': 148,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-mediumFlexible177.jpg',
'height': 173,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-articleLarge.jpg',
'height': 587,
'width': 600,
'legacy': {'xlarge': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 587},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-blog480.jpg',
'height': 470,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-blog427.jpg',
'height': 418,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-tmagArticle.jpg',
'height': 580,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-jumbo.jpg',
'height': 1003,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-blog225.jpg',
'height': 220,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-master675.jpg',
'height': 661,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-master180.jpg',
'height': 176,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-master768.jpg',
'height': 752,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-popup.jpg',
'height': 500,
'width': 511,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-blog533.jpg',
'height': 522,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-tmagSF.jpg',
'height': 354,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-slide.jpg',
'height': 500,
'width': 511,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-superJumbo.jpg',
'height': 2005,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-master1050.jpg',
'height': 1028,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-master495.jpg',
'height': 485,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-master315.jpg',
'height': 308,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/09/16/us/16CHARACTERS3/16CHARACTERS3-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'}],
'headline': {'main': 'The Nun With a Chain Saw, and Other People We Met During Irma',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hurricane Irma (2017)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Social Media', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Nuns', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Florida', 'rank': 4, 'major': 'N'}],
'pub_date': '2017-09-16T12:37:53+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Daniel Victor and Emily Cochrane',
'person': [{'firstname': 'Daniel',
'middlename': None,
'lastname': 'Victor',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Emily',
'middlename': None,
'lastname': 'Cochrane',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/91dc3ce9-8b05-50dc-9338-5acd2bfee9f2',
'word_count': 1369,
'uri': 'nyt://article/91dc3ce9-8b05-50dc-9338-5acd2bfee9f2'},
{'abstract': 'The women in Donald Trump’s life have sharply different roles. That difference is what many other men want, too.',
'web_url': 'https://www.nytimes.com/2016/07/21/opinion/campaign-stops/why-men-want-to-marry-melanias-and-raise-ivankas.html',
'snippet': 'The women in Donald Trump’s life have sharply different roles. That difference is what many other men want, too.',
'lead_paragraph': 'This article has been updated to reflect news events.',
'print_section': 'SR',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-facebookJumbo-v2.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoFifteenBySeven1305-v3.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoFifteenBySeven2610-v3.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-miniMoth-v3.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-windowsTile336H-v3.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-verticalTwoByThree735-v2.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-articleLarge-v2.jpg',
'height': 409,
'width': 600,
'legacy': {'xlarge': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 409},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-blog480-v2.jpg',
'height': 327,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-blog427-v2.jpg',
'height': 291,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-tmagArticle-v2.jpg',
'height': 404,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-jumbo-v2.jpg',
'height': 698,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-blog225-v2.jpg',
'height': 153,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-master675-v2.jpg',
'height': 460,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-master180-v2.jpg',
'height': 123,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-master768-v2.jpg',
'height': 523,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-popup-v2.jpg',
'height': 443,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-blog533-v2.jpg',
'height': 363,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-tmagSF-v2.jpg',
'height': 247,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-slide-v2.jpg',
'height': 409,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-superJumbo-v2.jpg',
'height': 1396,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-master1050-v2.jpg',
'height': 716,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-master495-v2.jpg',
'height': 337,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-master315-v2.jpg',
'height': 215,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-articleInline-v2.jpg',
'height': 130,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-hpSmall-v2.jpg',
'height': 111,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-blogSmallInline-v2.jpg',
'height': 103,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-mediumFlexible177-v2.jpg',
'height': 121,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-smallSquare252-v3.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/21/opinion/21filipovicWeb/21filipovicWeb-smallSquare168-v3.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Why Men Want to Marry Melanias and Raise Ivankas',
'kicker': 'Contributing Op-Ed Writer',
'content_kicker': None,
'print_headline': 'Marrying Melanias, Raising Ivankas',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Women and Girls',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Trump, Donald J', 'rank': 2, 'major': 'N'},
{'name': 'persons', 'value': 'Trump, Melania', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Trump, Ivanka', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Marriages', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Presidential Election of 2016',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Republican Party',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 8,
'major': 'N'},
{'name': 'subject',
'value': 'Work-Life Balance',
'rank': 9,
'major': 'N'}],
'pub_date': '2016-07-21T07:21:04+0000',
'document_type': 'article',
'news_desk': 'OpEd',
'section_name': 'Opinion',
'subsection_name': 'Campaign Stops',
'byline': {'original': 'By Jill Filipovic',
'person': [{'firstname': 'Jill',
'middlename': None,
'lastname': 'Filipovic',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Op-Ed',
'_id': 'nyt://article/b158fda1-7f2e-51e4-8cde-1a2badc2ed44',
'word_count': 1298,
'uri': 'nyt://article/b158fda1-7f2e-51e4-8cde-1a2badc2ed44'},
{'abstract': 'The season’s first rule of giving — the more the merrier.',
'web_url': 'https://tmagazine.blogs.nytimes.com/2010/11/19/the-moments-holiday-gift-guide/',
'snippet': 'The season’s first rule of giving — the more the merrier.',
'lead_paragraph': 'The season’s first rule of giving — the more the merrier.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Moment’s Holiday Gift Guide',
'kicker': 'T Magazine',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-11-19T22:15:06+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'T Magazine',
'byline': {'original': 'By Chelsea Zalopany and Jason Rider',
'person': [{'firstname': 'Chelsea',
'middlename': None,
'lastname': 'Zalopany',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Jason',
'middlename': None,
'lastname': 'Rider',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'_id': 'nyt://article/c9604bfd-7581-5d87-acba-f4c92bb1fe41',
'word_count': 537,
'uri': 'nyt://article/c9604bfd-7581-5d87-acba-f4c92bb1fe41'},
{'abstract': 'With the world grappling with rising prices, a tour through Argentina reveals that years of inflation can give rise to a truly bizarre economy.',
'web_url': 'https://www.nytimes.com/2022/08/06/business/inflation-argentina.html',
'snippet': 'With the world grappling with rising prices, a tour through Argentina reveals that years of inflation can give rise to a truly bizarre economy.',
'lead_paragraph': 'BUENOS AIRES — Eduardo Rabuffetti is an Argentine who has been to the United States once, his 1999 honeymoon in Miami. Yet he probably knows the $100 bill better than most Americans.',
'print_section': 'BU',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-horizontalMediumAt2X.jpg',
'height': 4000,
'width': 6000,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-threeByTwoLargeAt2X.jpg',
'height': 4000,
'width': 6000,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/08/07/business/00argentina-hyperinflation-lede/merlin_210638907_fe9b0f3b-4f77-48a3-b95a-5c14891e8fcd-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Think 9% Inflation Is Bad? Try 90%.',
'kicker': None,
'content_kicker': None,
'print_headline': 'Think 9% Inflation Is Bad? Try 90%.',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'internal-storyline-no',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'ARGENTINA', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Inflation (Economics)',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Economic Conditions and Trends',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Prices (Fares, Fees and Rates)',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Currency', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'US Dollar (Currency)',
'rank': 7,
'major': 'N'}],
'pub_date': '2022-08-06T09:00:34+0000',
'document_type': 'article',
'news_desk': 'SundayBusiness',
'section_name': 'Business Day',
'byline': {'original': 'By Jack Nicas, Ana Lankes and Sebastián López Brach',
'person': [{'firstname': 'Jack',
'middlename': None,
'lastname': 'Nicas',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Ana',
'middlename': None,
'lastname': 'Lankes',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2},
{'firstname': 'Sebastián',
'middlename': 'López',
'lastname': 'Brach',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 3}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/3454798a-1d8d-5ac6-96c4-856e8240dec0',
'word_count': 2880,
'uri': 'nyt://article/3454798a-1d8d-5ac6-96c4-856e8240dec0'},
{'abstract': 'Relief efforts after Hurricane Sandy occasionally provoked moments of friction and misunderstanding in a city long fractured by class, race, ethnicity, geography and culture.',
'web_url': 'https://www.nytimes.com/2012/11/17/nyregion/after-hurricane-sandy-helping-hands-also-expose-a-new-york-divide.html',
'snippet': 'Relief efforts after Hurricane Sandy occasionally provoked moments of friction and misunderstanding in a city long fractured by class, race, ethnicity, geography and culture.',
'lead_paragraph': 'After more than a week of self-sufficiency, George Ossy, an immigrant from Africa living amid the chaos of the Rockaways, with his 10-year-old daughter in tow, walked into the relief center down the street, one of several set up by the volunteers who had descended on the storm-battered peninsula in Queens. ',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-articleLarge.jpg',
'height': 330,
'width': 600,
'legacy': {'xlarge': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 330},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-blog480.jpg',
'height': 325,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-jumbo.jpg',
'height': 693,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-popup.jpg',
'height': 440,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-superJumbo.jpg',
'height': 1386,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-articleInline.jpg',
'height': 129,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/17/nyregion/JP-CLASS/JP-CLASS-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Helping Hands Also Expose a New York Divide',
'kicker': None,
'content_kicker': None,
'print_headline': 'Helping Hands Also Expose a New York Divide',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hurricane Sandy (2012)',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Volunteers and Community Service',
'rank': 3,
'major': 'N'}],
'pub_date': '2012-11-17T02:42:30+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Sarah Maslin Nir',
'person': [{'firstname': 'Sarah',
'middlename': 'Maslin',
'lastname': 'Nir',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d74303dd-21de-5ba2-b623-cd8eb261ce7d',
'word_count': 1363,
'uri': 'nyt://article/d74303dd-21de-5ba2-b623-cd8eb261ce7d'},
{'abstract': 'Rescuers had been searching for the children — aged 13, 9, 4 and 1 — ever since they survived a plane crash that killed the three adults on board.',
'web_url': 'https://www.nytimes.com/2023/06/09/world/americas/missing-colombian-children-found.html',
'snippet': 'Rescuers had been searching for the children — aged 13, 9, 4 and 1 — ever since they survived a plane crash that killed the three adults on board.',
'lead_paragraph': 'After 40 days in the Colombian rainforest, all four children who had been missing since the plane they were traveling in crashed on May 1 have been found alive, according to Colombia’s president.',
'print_section': 'A',
'print_page': '6',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-jumbo.jpg',
'height': 589,
'width': 884,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-superJumbo.jpg',
'height': 589,
'width': 884,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumSquareAt3X-v2.jpg',
'height': 589,
'width': 589,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-largeHorizontalJumbo.jpg',
'height': 590,
'width': 884,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-horizontalMediumAt2X.jpg',
'height': 590,
'width': 884,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-threeByTwoLargeAt2X.jpg',
'height': 590,
'width': 884,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-threeByTwoMediumAt2X.jpg',
'height': 590,
'width': 884,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-videoSixteenByNineJumbo1600.jpg',
'height': 497,
'width': 884,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-facebookJumbo.jpg',
'height': 463,
'width': 884,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/06/09/multimedia/09colombia-jungle-rescue-kljg/09colombia-jungle-rescue-kljg-mobileMasterAt3x.jpg',
'height': 664,
'width': 664,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '4 Missing Children Found Alive After 40 Days in Colombian Jungle',
'kicker': None,
'content_kicker': None,
'print_headline': '4 Children Survive 40 Days in Jungle',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'AMAZON JUNGLE',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Colombia', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Aviation Accidents, Safety and Disasters',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Missing Persons', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Indigenous People', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Rescues', 'rank': 7, 'major': 'N'}],
'pub_date': '2023-06-10T02:24:07+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By Genevieve Glatsky',
'person': [{'firstname': 'Genevieve',
'middlename': None,
'lastname': 'Glatsky',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4bc8d370-fe43-5e66-8c72-b0b48116a550',
'word_count': 590,
'uri': 'nyt://article/4bc8d370-fe43-5e66-8c72-b0b48116a550'}],
[{'abstract': 'Oksana Vasyakina’s first novel is a family history and a reflection on womanhood.',
'web_url': 'https://www.nytimes.com/2023/09/05/books/review/oksana-vasyakina-wound.html',
'snippet': 'Oksana Vasyakina’s first novel is a family history and a reflection on womanhood.',
'lead_paragraph': '“Wound,” Oksana Vasyakina’s debut novel, recounts a road trip that is both an elegy to the dead and a homecoming. Its heroine, who like the author is a prizewinning Russian poet and L.G.B.T.Q. activist named Oksana Vasyakina, has watched over the death of her mother, Angella, from breast cancer. Now Oksana is transporting her mother’s ashes 3,000 miles from a steppe town in western Russia to Ust-Ilimsk, the industrial city in the Siberian taiga that was their hometown.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-articleLarge.jpg',
'height': 480,
'width': 600,
'legacy': {'xlarge': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 480},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-popup.jpg',
'height': 500,
'width': 626,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-blog480.jpg',
'height': 384,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-blog533.jpg',
'height': 426,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-blog427.jpg',
'height': 341,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-tmagSF.jpg',
'height': 289,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-tmagArticle.jpg',
'height': 473,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-slide.jpg',
'height': 480,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-jumbo.jpg',
'height': 818,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-superJumbo.jpg',
'height': 1637,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-blog225.jpg',
'height': 180,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-master1050.jpg',
'height': 839,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-master675.jpg',
'height': 539,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-master495.jpg',
'height': 396,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-master180.jpg',
'height': 144,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-master315.jpg',
'height': 252,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-master768.jpg',
'height': 614,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumSquareAt3X.jpg',
'height': 1652,
'width': 1651,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-horizontalMediumAt2X.jpg',
'height': 1379,
'width': 2067,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-threeByTwoLargeAt2X.jpg',
'height': 1379,
'width': 2067,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-articleInline.jpg',
'height': 152,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-hpSmall.jpg',
'height': 130,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-blogSmallInline.jpg',
'height': 121,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mediumFlexible177.jpg',
'height': 141,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2023/09/05/books/review/5VASYAKINA/5VASYAKINA-mobileMasterAt3x.jpg',
'height': 1439,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'A Queer Poet’s Bittersweet Trip Across Russia to Return Home',
'kicker': 'Fiction',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'creative_works',
'value': 'Wound (Book)',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Vasyakina, Oksana', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Alter, Elina', 'rank': 4, 'major': 'N'}],
'pub_date': '2023-09-05T09:00:21+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Fernanda Eberstadt',
'person': [{'firstname': 'Fernanda',
'middlename': None,
'lastname': 'Eberstadt',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/aff25317-286d-5846-9126-a085771f5622',
'word_count': 625,
'uri': 'nyt://article/aff25317-286d-5846-9126-a085771f5622'},
{'abstract': 'Costco is popular for its low prices, but shopping there can take time. Does Amazon’s Subscribe & Save service provide a better alternative?',
'web_url': 'https://www.nytimes.com/2011/03/05/your-money/05money.html',
'snippet': 'Costco is popular for its low prices, but shopping there can take time. Does Amazon’s Subscribe & Save service provide a better alternative?',
'lead_paragraph': 'For millions of Costco customers, this is an eagerly awaited time of year. Right about now is when their big annual rebate checks arrive from American Express.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/05/business/05money/05money-articleLarge.jpg',
'height': 315,
'width': 600,
'legacy': {'xlarge': 'images/2011/03/05/business/05money/05money-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 315},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/05/business/05money/05money-jumbo.jpg',
'height': 625,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/05/business/05money/05money-popup.jpg',
'height': 397,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/05/business/05money/05money-articleInline.jpg',
'height': 116,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/05/business/05money/05money-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/05/business/05money/05money-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/03/05/business/05money/05money-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Adding It Up: Amazon Ship vs. Costco Shop',
'kicker': 'Your Money',
'content_kicker': None,
'print_headline': 'Adding It Up: Amazon Ship Vs. Costco Shop',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Discount Selling', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Personal Finances', 'rank': 3, 'major': 'N'},
{'name': 'organizations', 'value': 'COSTCO', 'rank': 4, 'major': 'N'}],
'pub_date': '2011-03-04T21:19:40+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Your Money',
'byline': {'original': 'By Ron Lieber',
'person': [{'firstname': 'Ron',
'middlename': None,
'lastname': 'Lieber',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1a56b0d4-df5e-585d-99b2-6d8ad8a13b39',
'word_count': 1358,
'uri': 'nyt://article/1a56b0d4-df5e-585d-99b2-6d8ad8a13b39'},
{'abstract': 'A sprawling expo center in the Polish capital has given some 25,000 refugees a safe place to recharge before journeying on.',
'web_url': 'https://www.nytimes.com/2022/03/21/world/europe/polish-border-refugees.html',
'snippet': 'A sprawling expo center in the Polish capital has given some 25,000 refugees a safe place to recharge before journeying on.',
'lead_paragraph': 'WARSAW — Ilona Yurchenkov, 28, sits on a black chair in a sprawling expo center on the outskirts of Warsaw, a Yankees hat on her head and her cat, Mars, in a pet carrier beside her. She left her home in the Ukrainian city of Kharkiv when fighting began there, and she has been on the road for days.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-popup.jpg',
'height': 434,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-blog533.jpg',
'height': 356,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-horizontalMediumAt2X.jpg',
'height': 4333,
'width': 6496,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-threeByTwoLargeAt2X.jpg',
'height': 4334,
'width': 6500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/merlin_203990928_78d713be-b6e7-40c9-8341-cd954763eb9e-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/03/21/world/21UKRAINE-POLAND-BURST-sub/21UKRAINE-POLAND-BURST-sub-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'In Warsaw, a Network of Support Greets Those Crossing the Polish Border',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Russian Invasion of Ukraine (2022)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Refugees and Displaced Persons',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'United Nations',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'European Union',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Ukraine', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'Warsaw (Poland)',
'rank': 6,
'major': 'N'}],
'pub_date': '2022-03-22T00:20:50+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Megan Specia',
'person': [{'firstname': 'Megan',
'middlename': None,
'lastname': 'Specia',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2583701a-219a-57f6-b6cc-1dc526cfed50',
'word_count': 611,
'uri': 'nyt://article/2583701a-219a-57f6-b6cc-1dc526cfed50'},
{'abstract': 'India opened a formal investigation into Jeff Bezos’ Amazon and its leading rival, Flipkart, just before his first visit in five years.',
'web_url': 'https://www.nytimes.com/2020/01/13/technology/amazon-bezos-india-antitrust.html',
'snippet': 'India opened a formal investigation into Jeff Bezos’ Amazon and its leading rival, Flipkart, just before his first visit in five years.',
'lead_paragraph': 'MUMBAI, India — Amazon’s founder and chief executive, Jeff Bezos, is visiting India this week for the first time in over five years. ',
'print_section': 'B',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-articleLarge.jpg',
'height': 417,
'width': 600,
'legacy': {'xlarge': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 417},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-popup.jpg',
'height': 452,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-blog480.jpg',
'height': 333,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-blog533.jpg',
'height': 370,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-blog427.jpg',
'height': 297,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-tmagSF.jpg',
'height': 251,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-tmagArticle.jpg',
'height': 411,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-slide.jpg',
'height': 417,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-jumbo.jpg',
'height': 711,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-superJumbo.jpg',
'height': 1423,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-blog225.jpg',
'height': 156,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-master1050.jpg',
'height': 729,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-master675.jpg',
'height': 469,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-master495.jpg',
'height': 344,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-master180.jpg',
'height': 125,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-master315.jpg',
'height': 219,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-master768.jpg',
'height': 533,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-horizontalMediumAt2X.jpg',
'height': 3468,
'width': 5200,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-threeByTwoLargeAt2X.jpg',
'height': 3296,
'width': 4942,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-articleInline.jpg',
'height': 132,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-hpSmall.jpg',
'height': 113,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-blogSmallInline.jpg',
'height': 105,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-mediumFlexible177.jpg',
'height': 123,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/13amazonindia1-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/01/13/business/13amazonindia1/merlin_167073096_f7b84a6f-f069-41aa-ba34-6270301f5e78-mobileMasterAt3x.jpg',
'height': 1250,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Welcome to India, Mr. Bezos. Here’s an Antitrust Complaint.',
'kicker': None,
'content_kicker': None,
'print_headline': 'New Delhi Greets Bezos With an Antitrust Complaint',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'E-Commerce',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Antitrust Laws and Competition Issues',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Amazon.com Inc',
'rank': 4,
'major': 'N'},
{'name': 'organizations',
'value': 'Flipkart.com',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'Bezos, Jeffrey P', 'rank': 6, 'major': 'N'},
{'name': 'persons', 'value': 'Modi, Narendra', 'rank': 7, 'major': 'N'},
{'name': 'glocations', 'value': 'India', 'rank': 8, 'major': 'N'}],
'pub_date': '2020-01-13T21:44:43+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Technology',
'byline': {'original': 'By Vindu Goel',
'person': [{'firstname': 'Vindu',
'middlename': None,
'lastname': 'Goel',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/79af01e9-afb1-5e5b-b844-be50ccfdcdba',
'word_count': 543,
'uri': 'nyt://article/79af01e9-afb1-5e5b-b844-be50ccfdcdba'},
{'abstract': 'The attack last month was among the first signs that Ukraine was facing a merciless war.',
'web_url': 'https://www.nytimes.com/2022/04/13/world/europe/mariupol-hospital-attack-nurse.html',
'snippet': 'The attack last month was among the first signs that Ukraine was facing a merciless war.',
'lead_paragraph': 'When a Russian missile strike hit a maternity hospital in the Ukrainian port city of Mariupol early last month, Elena Karas, a nurse, was on the third floor taking care of 13 premature babies, two of whom had been abandoned.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-horizontalMediumAt2X.jpg',
'height': 2091,
'width': 3137,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-threeByTwoLargeAt2X.jpg',
'height': 2091,
'width': 3137,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/04/13/world/13ukraine-blog-mariupol-nurse-lead/13ukraine-blog-mariupol-nurse-lead-mobileMasterAt3x.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': '‘You would think it’s a safe place’: A nurse recounts an attack on a Mariupol hospital.',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hospitals',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Russian Invasion of Ukraine (2022)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Civilian Casualties',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Mariupol (Ukraine)',
'rank': 4,
'major': 'N'}],
'pub_date': '2022-04-13T17:13:20+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Emma Bubola',
'person': [{'firstname': 'Emma',
'middlename': None,
'lastname': 'Bubola',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/95d91eac-929f-5e28-8dc0-8eb72a8cf300',
'word_count': 587,
'uri': 'nyt://article/95d91eac-929f-5e28-8dc0-8eb72a8cf300'},
{'abstract': 'For years, J. Roddy Walston and the Business, a gritty four-piece rock ’n’ roll outfit from Baltimore, have toured the country in a former church van.',
'web_url': 'https://www.nytimes.com/2010/11/07/automobiles/collectibles/07EGO.html',
'snippet': 'For years, J. Roddy Walston and the Business, a gritty four-piece rock ’n’ roll outfit from Baltimore, have toured the country in a former church van.',
'lead_paragraph': 'ONE drizzly afternoon last month, J. Roddy Walston and the Business, a gritty four-piece rock ’n’ roll outfit from Baltimore, were congregated around their tour van after performing three songs in the WNYC studios in SoHo. ',
'print_section': 'AU',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/07/automobiles/JPEGO-2/JPEGO-2-jumbo.jpg',
'height': 664,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/07/automobiles/JPEGO-2/JPEGO-2-popup.jpg',
'height': 421,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/07/automobiles/JPEGO-2/JPEGO-2-articleInline.jpg',
'height': 123,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/07/automobiles/JPEGO-2/JPEGO-2-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/11/07/automobiles/JPEGO-2/JPEGO-2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/11/07/automobiles/JPEGO-2/JPEGO-2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'A Church Van? It’s With the Band',
'kicker': 'Auto Ego | 1997 Ford Econoline Club Wagon',
'content_kicker': None,
'print_headline': 'A Church Van? It’s With the Band',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Vans', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Music', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Collectors and Collections',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Automobiles', 'rank': 4, 'major': 'N'}],
'pub_date': '2010-11-05T20:07:06+0000',
'document_type': 'article',
'news_desk': 'Automobiles',
'section_name': 'Automobiles',
'subsection_name': 'Collectible Cars',
'byline': {'original': 'By Richard S. Chang',
'person': [{'firstname': 'Richard',
'middlename': 'S.',
'lastname': 'Chang',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5a623359-caf1-5b5f-b9a3-092d9fd96617',
'word_count': 1463,
'uri': 'nyt://article/5a623359-caf1-5b5f-b9a3-092d9fd96617'},
{'abstract': 'The new regulation also orders insurance providers to cover cannabis products prescribed by doctors. Some of the strongest champions of the government’s move were mothers of sick children.',
'web_url': 'https://www.nytimes.com/2020/11/12/world/americas/argentina-cannabis-marijuana.html',
'snippet': 'The new regulation also orders insurance providers to cover cannabis products prescribed by doctors. Some of the strongest champions of the government’s move were mothers of sick children.',
'lead_paragraph': 'BUENOS AIRES — Argentina on Thursday authorized people to grow marijuana at home for medicinal use, delighting supporters of cannabis who have fought for years to make it widely available to patients suffering from a broad range of ailments.',
'print_section': 'A',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-articleLarge.jpg',
'height': 385,
'width': 600,
'legacy': {'xlarge': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 385},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-popup.jpg',
'height': 417,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-blog480.jpg',
'height': 308,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-blog533.jpg',
'height': 342,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-blog427.jpg',
'height': 274,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-tmagSF.jpg',
'height': 232,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-tmagArticle.jpg',
'height': 379,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-slide.jpg',
'height': 385,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-jumbo.jpg',
'height': 656,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-superJumbo.jpg',
'height': 1312,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-blog225.jpg',
'height': 144,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-master1050.jpg',
'height': 673,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-master675.jpg',
'height': 433,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-master495.jpg',
'height': 317,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-master180.jpg',
'height': 115,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-master315.jpg',
'height': 202,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-master768.jpg',
'height': 492,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-mediumSquareAt3X.jpg',
'height': 1802,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-horizontalMediumAt2X.jpg',
'height': 2243,
'width': 3361,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-threeByTwoLargeAt2X.jpg',
'height': 2243,
'width': 3361,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-articleInline.jpg',
'height': 122,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-hpSmall.jpg',
'height': 104,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-blogSmallInline.jpg',
'height': 97,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-mediumFlexible177.jpg',
'height': 113,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/12argentina-marijuana-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/11/12/lens/12argentina-marijuana/merlin_154381110_b499207e-64aa-4965-9bd9-be56e4c01e39-mobileMasterAt3x.jpg',
'height': 1154,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Argentina to Allow Medicinal Marijuana to Be Grown at Home',
'kicker': None,
'content_kicker': None,
'print_headline': 'Argentina Allows People to Grow Medicinal Marijuana at Home',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'ARGENTINA',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Fernandez, Alberto (1959- )',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Cannabis Foods and Products',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Marijuana', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Medical Marijuana',
'rank': 5,
'major': 'N'}],
'pub_date': '2020-11-13T00:22:54+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Americas',
'byline': {'original': 'By Daniel Politi',
'person': [{'firstname': 'Daniel',
'middlename': None,
'lastname': 'Politi',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a1a437c9-ecf7-569c-a392-34d4b740d344',
'word_count': 576,
'uri': 'nyt://article/a1a437c9-ecf7-569c-a392-34d4b740d344'},
{'abstract': 'Babies love books — like these — that show them their own world.',
'web_url': 'https://www.nytimes.com/2019/11/27/books/best-baby-books.html',
'snippet': 'Babies love books — like these — that show them their own world.',
'lead_paragraph': 'You might think the details of your baby’s everyday life would make for a boring book. You’d be very, very wrong! Every baby needs books that let him look at images of other babies, and shows him how they go through their days. These picks are as dependable as they are adorable. I might even call them foolproof, because they’re about babies’ favorite subject — themselves. ',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-horizontalMediumAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-threeByTwoLargeAt2X.jpg',
'height': 4480,
'width': 6720,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/13/books/00Russo_BabyBooks/merlin_156401055_662a4e56-0dac-4616-ad39-cad30d41a378-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '7 Great Books for (and About) Babies',
'kicker': 'Story times: AGES 0-2',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Reading and Writing Skills (Education)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 4, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 5,
'major': 'N'}],
'pub_date': '2019-11-27T16:31:30+0000',
'document_type': 'article',
'news_desk': 'Books',
'section_name': 'Books',
'byline': {'original': 'By Maria Russo',
'person': [{'firstname': 'Maria',
'middlename': None,
'lastname': 'Russo',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ee3e69f5-adcf-56e5-badb-10b56a6af47f',
'word_count': 598,
'uri': 'nyt://article/ee3e69f5-adcf-56e5-badb-10b56a6af47f'},
{'abstract': 'What daily frustrations do you experience living in your town or city? How would you address them?',
'web_url': 'https://www.nytimes.com/2019/10/29/learning/what-grievances-do-you-have-with-your-local-community.html',
'snippet': 'What daily frustrations do you experience living in your town or city? How would you address them?',
'lead_paragraph': 'Have you ever been late to school because of traffic? Or seen your city’s streets littered with trash? Or wondered why your neighborhood doesn’t have more bicycle lanes?',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-jumbo.jpg',
'height': 635,
'width': 953,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-superJumbo.jpg',
'height': 635,
'width': 953,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-largeHorizontalJumbo.jpg',
'height': 635,
'width': 953,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-horizontalMediumAt2X.jpg',
'height': 635,
'width': 953,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-threeByTwoLargeAt2X-v2.jpg',
'height': 635,
'width': 953,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-threeByTwoMediumAt2X-v2.jpg',
'height': 635,
'width': 953,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-videoSixteenByNineJumbo1600-v2.jpg',
'height': 536,
'width': 953,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-facebookJumbo-v2.jpg',
'height': 499,
'width': 953,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/12/16/nyregion/subwayhell-promo-1544997813446/subwayhell-promo-1544997813446-watch268-v2.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'}],
'headline': {'main': 'What Grievances Do You Have With Your Local Community?',
'kicker': 'student opinion',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2019-10-29T11:47:13+0000',
'document_type': 'article',
'news_desk': 'Learning',
'section_name': 'The Learning Network',
'byline': {'original': 'By Natalie Proulx',
'person': [{'firstname': 'Natalie',
'middlename': None,
'lastname': 'Proulx',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/1aec4ed0-fead-539f-ba0f-98dda54c6c6e',
'word_count': 626,
'uri': 'nyt://article/1aec4ed0-fead-539f-ba0f-98dda54c6c6e'},
{'abstract': 'Big and small pieces of plastic make coral more prone to disease, the researchers found, but it is possible to control the impact of coastal pollution on reefs.',
'web_url': 'https://www.nytimes.com/2018/01/25/science/plastic-coral-reefs.html',
'snippet': 'Big and small pieces of plastic make coral more prone to disease, the researchers found, but it is possible to control the impact of coastal pollution on reefs.',
'lead_paragraph': 'Joleah Lamb began her career as a coral biologist on the Great Barrier Reef. Every now and then she’d note a scrap of plastic as she swam through. But when she started studying reefs in Asia, she came across a completely different level of detritus.',
'print_section': 'D',
'print_page': '2',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/merlin_132830240_16f55e32-7e56-4dc6-af8e-8d58e747d3cd-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-articleInline.jpg',
'height': 128,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-hpSmall.jpg',
'height': 110,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-mediumFlexible177.jpg',
'height': 119,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/26/science/26TB-CORAL2/26TB-CORAL2-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Billions of Plastic Pieces Litter Coral in Asia and Australia',
'kicker': 'Trilobites',
'content_kicker': None,
'print_headline': 'Pollution Overload: Tons of Plastic Litter Coral Reefs in Asia',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject', 'value': 'Coral', 'rank': 1, 'major': 'N'},
{'name': 'subject', 'value': 'Plastics', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Oceans and Seas', 'rank': 3, 'major': 'N'},
{'name': 'subject', 'value': 'Reefs', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Water Pollution', 'rank': 5, 'major': 'N'},
{'name': 'glocations',
'value': 'Far East, South and Southeast Asia and Pacific Areas',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'Science (Journal)',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Lamb, Joleah', 'rank': 8, 'major': 'N'}],
'pub_date': '2018-01-25T19:00:19+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Science',
'byline': {'original': 'By Veronique Greenwood',
'person': [{'firstname': 'Veronique',
'middlename': None,
'lastname': 'Greenwood',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7a9b96a5-9721-5eb7-8b5f-dc705633fb39',
'word_count': 596,
'uri': 'nyt://article/7a9b96a5-9721-5eb7-8b5f-dc705633fb39'}],
[{'abstract': 'From simple wooden tracks to Lionel’s Pennsylvania Railroad GG1 with simulated sparks, Trainworld, in Kensington, Brooklyn, probably stocks it.',
'web_url': 'https://www.nytimes.com/2017/12/13/nyregion/all-trains-all-the-time.html',
'snippet': 'From simple wooden tracks to Lionel’s Pennsylvania Railroad GG1 with simulated sparks, Trainworld, in Kensington, Brooklyn, probably stocks it.',
'lead_paragraph': 'Trainworld, a family-owned store that sits fittingly under an elevated section of the F train in Brooklyn, is a modeler’s dream.',
'print_section': 'MB',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-articleLarge.jpg',
'height': 378,
'width': 600,
'legacy': {'xlarge': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 378},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-popup.jpg',
'height': 410,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-blog480.jpg',
'height': 303,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-blog533.jpg',
'height': 336,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-blog427.jpg',
'height': 269,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-tmagSF.jpg',
'height': 228,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-tmagArticle.jpg',
'height': 373,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-slide.jpg',
'height': 378,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-jumbo.jpg',
'height': 645,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-superJumbo.jpg',
'height': 1291,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-blog225.jpg',
'height': 142,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-master1050.jpg',
'height': 662,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-master675.jpg',
'height': 425,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-master495.jpg',
'height': 312,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-master180.jpg',
'height': 113,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-master315.jpg',
'height': 199,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-master768.jpg',
'height': 484,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/12/17/nyregion/17joint1/17joint1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/12/17/nyregion/17joint1/17joint1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-articleInline.jpg',
'height': 120,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-hpSmall.jpg',
'height': 103,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-blogSmallInline.jpg',
'height': 95,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/merlin_131127458_18ca9d0e-e868-4749-be26-f72d0deb77b9-mediumFlexible177.jpg',
'height': 112,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/12/17/nyregion/17joint1/17joint1-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'All Trains, All the Time',
'kicker': 'Neighborhood Joint',
'content_kicker': None,
'print_headline': 'For 5 Decades, Keeping Modelers on Track',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Models and Replicas',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Kensington (Brooklyn, NY)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Collectors and Collections',
'rank': 4,
'major': 'N'}],
'pub_date': '2017-12-13T16:02:13+0000',
'document_type': 'article',
'news_desk': 'Metropolitan',
'section_name': 'New York',
'byline': {'original': 'By Emily Brennan',
'person': [{'firstname': 'Emily',
'middlename': None,
'lastname': 'Brennan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/04d2e4b3-af63-5951-bbdf-96bfc07b3398',
'word_count': 610,
'uri': 'nyt://article/04d2e4b3-af63-5951-bbdf-96bfc07b3398'},
{'abstract': 'A man was charged with assault and endangerment after a sheriff’s deputy heard faint cries and rescued the abandoned infant. “It was just a whimper,” the deputy said.',
'web_url': 'https://www.nytimes.com/2018/07/10/us/baby-buried-alive-montana.html',
'snippet': 'A man was charged with assault and endangerment after a sheriff’s deputy heard faint cries and rescued the abandoned infant. “It was just a whimper,” the deputy said.',
'lead_paragraph': 'A faint cry led a sheriff’s deputy to a pile of sticks and debris in the woods of western Montana. There, the deputy, part of a search-and-rescue team, discovered a 5-month-old infant buried face down, but still alive.',
'print_section': 'A',
'print_page': '17',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-articleLarge.jpg',
'height': 355,
'width': 600,
'legacy': {'xlarge': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 355},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-popup.jpg',
'height': 385,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-blog480.jpg',
'height': 284,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-blog533.jpg',
'height': 316,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-blog427.jpg',
'height': 253,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-tmagSF.jpg',
'height': 214,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-tmagArticle.jpg',
'height': 351,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-slide.jpg',
'height': 355,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-jumbo.jpg',
'height': 607,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-superJumbo.jpg',
'height': 1213,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-blog225.jpg',
'height': 133,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-master1050.jpg',
'height': 622,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-master675.jpg',
'height': 400,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-master495.jpg',
'height': 293,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-master180.jpg',
'height': 107,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-master315.jpg',
'height': 187,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-master768.jpg',
'height': 455,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-largeHorizontalJumbo.jpg',
'height': 684,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-horizontalMediumAt2X.jpg',
'height': 1777,
'width': 2662,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-threeByTwoLargeAt2X.jpg',
'height': 1777,
'width': 2662,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-threeByTwoMediumAt2X.jpg',
'height': 1001,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-threeByTwoSmallAt2X.jpg',
'height': 401,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-articleInline.jpg',
'height': 113,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-hpSmall.jpg',
'height': 97,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-blogSmallInline.jpg',
'height': 89,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-mediumFlexible177.jpg',
'height': 105,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine3000.jpg',
'height': 1689,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoSixteenByNineJumbo1600.jpg',
'height': 901,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/07/10/us/11xp-buriedbaby1/11xp-buriedbaby1-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Baby Survives 9 Hours Buried Alive in Montana Woods',
'kicker': None,
'content_kicker': None,
'print_headline': '5-Month-Old Found Alive In the Woods',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Rescues', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Child Abuse and Neglect',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Missoula County (Mont)',
'rank': 4,
'major': 'N'},
{'name': 'persons',
'value': 'Crowley, Francis Carlton',
'rank': 5,
'major': 'N'}],
'pub_date': '2018-07-10T16:08:39+0000',
'document_type': 'article',
'news_desk': 'Express',
'section_name': 'U.S.',
'byline': {'original': 'By Christine Hauser and Karen Zraick',
'person': [{'firstname': 'Christine',
'middlename': None,
'lastname': 'Hauser',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Karen',
'middlename': None,
'lastname': 'Zraick',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cdc88716-6cf3-555a-98a1-d199e9a0a666',
'word_count': 617,
'uri': 'nyt://article/cdc88716-6cf3-555a-98a1-d199e9a0a666'},
{'abstract': 'The case of a 6-month-old girl left alone in a park revived concerns about the high cost of medicine and the plight of children with disabilities.',
'web_url': 'https://www.nytimes.com/2018/01/24/world/asia/china-abandoned-baby.html',
'snippet': 'The case of a 6-month-old girl left alone in a park revived concerns about the high cost of medicine and the plight of children with disabilities.',
'lead_paragraph': 'The 6-month-old girl was found alone at night in a park in southern China, sleeping in a stroller. Next to her, in a lime-green backpack, was a bottle of infant formula, diapers and a two-page note from her parents.',
'print_section': 'A',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-articleLarge.png',
'height': 666,
'width': 600,
'legacy': {'xlarge': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 666},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-popup.png',
'height': 500,
'width': 451,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-blog480.png',
'height': 533,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-blog533.png',
'height': 592,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-blog427.png',
'height': 474,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-tmagSF.png',
'height': 402,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-tmagArticle.png',
'height': 657,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-slide.png',
'height': 500,
'width': 451,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-jumbo.png',
'height': 1024,
'width': 923,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-superJumbo.png',
'height': 1137,
'width': 1024,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-blog225.png',
'height': 250,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-master675.png',
'height': 749,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-master495.png',
'height': 550,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-master180.png',
'height': 200,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-master315.png',
'height': 350,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-master768.png',
'height': 853,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-smallSquare168.png',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-smallSquare252.png',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-square640.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-sfSpan.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-largeHorizontalJumbo.png',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-hpLarge.png',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-largeWidescreen573.png',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoLarge.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-mediumThreeByTwo440.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-mediumThreeByTwo252.png',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-mediumThreeByTwo378.png',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-articleInline.png',
'height': 211,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-hpSmall.png',
'height': 181,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-blogSmallInline.png',
'height': 168,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-mediumFlexible177.png',
'height': 197,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine768.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNine150.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-videoSixteenByNineJumbo1600.png',
'height': 576,
'width': 1024,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-facebookJumbo.png',
'height': 536,
'width': 1023,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-watch308.png',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-watch268.png',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/01/24/world/asia/chinababy-map-1516806871689/chinababy-map-1516806871689-verticalTwoByThree735.png',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': '‘She’ll Die if She Stays With Us’: A Baby Abandoned in China',
'kicker': None,
'content_kicker': None,
'print_headline': '‘She’ll Die if She Stays With Us’',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'China',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Dongguan (China)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Child Abandonment', 'rank': 3, 'major': 'N'},
{'name': 'organizations',
'value': 'National Health and Family Planning Commission (China)',
'rank': 4,
'major': 'N'}],
'pub_date': '2018-01-24T11:08:38+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Javier C. Hernández and Iris Zhao',
'person': [{'firstname': 'Javier',
'middlename': 'C.',
'lastname': 'Hernández',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Iris',
'middlename': None,
'lastname': 'Zhao',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/e663798b-7169-50d9-9be5-29a686f0c2d8',
'word_count': 588,
'uri': 'nyt://article/e663798b-7169-50d9-9be5-29a686f0c2d8'},
{'abstract': 'The government plans to outlaw the destruction of brand-new consumer products, a practice that companies use to stop goods from being stolen or sold at steep discounts.',
'web_url': 'https://www.nytimes.com/2019/06/05/world/europe/france-unsold-products.html',
'snippet': 'The government plans to outlaw the destruction of brand-new consumer products, a practice that companies use to stop goods from being stolen or sold at steep discounts.',
'lead_paragraph': 'LONDON — France plans to outlaw the destruction of unsold consumer products, a practice that currently results in the disposal of new goods worth 800 million euros, or more than $900 million, in the country each year.',
'print_section': 'A',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/06/05/world/05france-goods/05france-goods-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-horizontalMediumAt2X.jpg',
'height': 3394,
'width': 5091,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-threeByTwoLargeAt2X.jpg',
'height': 3394,
'width': 5091,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/merlin_155977602_ef40511f-9c82-437e-9129-dc6a888c864e-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/06/05/world/05france-goods/05france-goods-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'France to End Disposal of $900 Million in Unsold Goods Each Year',
'kicker': None,
'content_kicker': None,
'print_headline': 'France to End Disposal of New Goods',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'France',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Environment', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Shopping and Retail',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Waste Materials and Disposal',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Recycling of Waste Materials',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Law and Legislation',
'rank': 6,
'major': 'N'}],
'pub_date': '2019-06-05T15:29:54+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'subsection_name': 'Europe',
'byline': {'original': 'By Palko Karasz',
'person': [{'firstname': 'Palko',
'middlename': None,
'lastname': 'Karasz',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cac2b08d-57cb-59f9-8470-9293cfe7e0d7',
'word_count': 655,
'uri': 'nyt://article/cac2b08d-57cb-59f9-8470-9293cfe7e0d7'},
{'abstract': 'Treat yourself to some fried chicken, paired with whatever you’d like, whether cream gravy and mashed potatoes, or braised greens.',
'web_url': 'https://www.nytimes.com/2017/09/22/dining/what-to-cook-this-weekend-newsletter.html',
'snippet': 'Treat yourself to some fried chicken, paired with whatever you’d like, whether cream gravy and mashed potatoes, or braised greens.',
'lead_paragraph': 'Sam Sifton emails readers of Cooking five days a week to talk about food and suggest recipes. That email also appears here. To receive it in your inbox, register here. Download the NYT Cooking app here.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-articleLarge-v2.jpg',
'height': 388,
'width': 600,
'legacy': {'xlarge': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 388},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-popup-v2.jpg',
'height': 421,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-blog480-v2.jpg',
'height': 311,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-blog533-v2.jpg',
'height': 345,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-blog427-v2.jpg',
'height': 276,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-tmagSF-v2.jpg',
'height': 234,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-tmagArticle-v2.jpg',
'height': 383,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-slide-v2.jpg',
'height': 388,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-jumbo-v2.jpg',
'height': 663,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-superJumbo-v2.jpg',
'height': 986,
'width': 1523,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-blog225-v2.jpg',
'height': 146,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-master1050-v2.jpg',
'height': 680,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-master675-v2.jpg',
'height': 437,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-master495-v2.jpg',
'height': 320,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-master180-v2.jpg',
'height': 117,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-master315-v2.jpg',
'height': 204,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-master768-v2.jpg',
'height': 497,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-largeHorizontalJumbo-v2.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-horizontalMediumAt2X-v2.jpg',
'height': 986,
'width': 1481,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-threeByTwoLargeAt2X-v2.jpg',
'height': 986,
'width': 1481,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-threeByTwoMediumAt2X-v2.jpg',
'height': 986,
'width': 1481,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-threeByTwoSmallAt2X-v2.jpg',
'height': 399,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-articleInline-v2.jpg',
'height': 123,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-hpSmall-v2.jpg',
'height': 106,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-blogSmallInline-v2.jpg',
'height': 98,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-mediumFlexible177-v2.jpg',
'height': 115,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoSixteenByNineJumbo1600-v2.jpg',
'height': 856,
'width': 1524,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/07/25/dining/25FRIED-CHICKEN/25FRIED-CHICKEN-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'What to Cook This Weekend',
'kicker': 'What to Cook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Cooking and Cookbooks',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Recipes', 'rank': 2, 'major': 'N'}],
'pub_date': '2017-09-22T15:10:01+0000',
'document_type': 'article',
'news_desk': 'Dining',
'section_name': 'Food',
'byline': {'original': 'By Sam Sifton',
'person': [{'firstname': 'Sam',
'middlename': None,
'lastname': 'Sifton',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/24f42ffa-6700-5fa8-95b7-af23a882975c',
'word_count': 644,
'uri': 'nyt://article/24f42ffa-6700-5fa8-95b7-af23a882975c'},
{'abstract': 'We have them, whether it’s chicken Marengo, red beans and rice or rotisserie chicken, any number of ways.',
'web_url': 'https://www.nytimes.com/2018/03/12/dining/the-best-monday-meals-newsletter.html',
'snippet': 'We have them, whether it’s chicken Marengo, red beans and rice or rotisserie chicken, any number of ways.',
'lead_paragraph': 'Good morning! The kids have been listening to the “Falsettos” soundtrack, Bluetoothing it onto the kitchen radio over and over, Trina singing “Jason’s Therapy”:',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/03/17/dining/17COOKING-CHICKEN2/19COOKING-CHICKEN2-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'The Best Monday Meals',
'kicker': 'What to Cook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Cooking and Cookbooks',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Recipes', 'rank': 2, 'major': 'N'}],
'pub_date': '2018-03-12T14:30:01+0000',
'document_type': 'article',
'news_desk': 'Dining',
'section_name': 'Food',
'byline': {'original': 'By Sam Sifton',
'person': [{'firstname': 'Sam',
'middlename': None,
'lastname': 'Sifton',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d4038169-5acc-534f-9149-bc344495ea29',
'word_count': 625,
'uri': 'nyt://article/d4038169-5acc-534f-9149-bc344495ea29'},
{'abstract': 'Tales of the world’s smallest violin, how to make a marriage tidy and the “happy ending” problem.',
'web_url': 'https://www.nytimes.com/2017/06/02/briefing/11-great-stories-that-have-nothing-to-do-with-politics.html',
'snippet': 'Tales of the world’s smallest violin, how to make a marriage tidy and the “happy ending” problem.',
'lead_paragraph': 'Welcome to Our Picks, a guide to the best stuff to read, watch and listen to from around the internet. Check this space for the must-read long-form article, the next great podcast for your commute, the news-making tweetstorm. And yes, we’re also tooting our own horn here. We’ll share can’t-miss Times articles from the week and reveal some gems you might have overlooked.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2017/06/02/insider/03OURPICKS-slide-XJ2M/03OURPICKS-slide-XJ2M-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'}],
'headline': {'main': '11 Great Stories That Have Nothing to Do With Politics',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2017-06-02T19:31:14+0000',
'document_type': 'article',
'news_desk': 'NewsDesk',
'section_name': 'Briefing',
'byline': {'original': 'By Anna Dubenko and Michelle L. Dozois',
'person': [{'firstname': 'Anna',
'middlename': None,
'lastname': 'Dubenko',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Michelle',
'middlename': 'L.',
'lastname': 'Dozois',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ab696635-09a9-5d7f-b5e8-8b01a3722401',
'word_count': 606,
'uri': 'nyt://article/ab696635-09a9-5d7f-b5e8-8b01a3722401'},
{'abstract': "Readers respond to '13 Questions to Ask Before Getting Married' with more of their own.",
'web_url': 'https://www.nytimes.com/interactive/2016/03/29/fashion/weddings/marriage-questions-comments.html',
'snippet': "Readers respond to '13 Questions to Ask Before Getting Married' with more of their own.",
'lead_paragraph': "Readers respond to '13 Questions to Ask Before Getting Married' with more of their own.",
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-facebookJumbo-v2.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-verticalTwoByThree735.jpg',
'height': 1101,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-articleLarge.jpg',
'height': 462,
'width': 600,
'legacy': {'xlarge': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 462},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-blog480.jpg',
'height': 370,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-blog427.jpg',
'height': 329,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-tmagArticle.jpg',
'height': 456,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-jumbo.jpg',
'height': 789,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-blog225.jpg',
'height': 173,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-master675.jpg',
'height': 520,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-master180.jpg',
'height': 139,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-master768.jpg',
'height': 591,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-popup.jpg',
'height': 500,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-blog533.jpg',
'height': 411,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-tmagSF.jpg',
'height': 279,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-slide.jpg',
'height': 462,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-superJumbo.jpg',
'height': 1575,
'width': 2045,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-master1050.jpg',
'height': 809,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-master495.jpg',
'height': 381,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-master315.jpg',
'height': 243,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-articleInline.jpg',
'height': 146,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-hpSmall.jpg',
'height': 126,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-blogSmallInline.jpg',
'height': 116,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-mediumFlexible177.jpg',
'height': 136,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-largeWidescreen1050-v2.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/03/24/style/24Marriage-Questions-slide-9S4X/24Marriage-Questions-slide-9S4X-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'How Well Do You Know Your Partner? Readers Offer Still More Pre-Marriage Questions',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Marriages',
'rank': 1,
'major': 'N'}],
'pub_date': '2016-03-29T20:19:41+0000',
'document_type': 'multimedia',
'news_desk': 'Fashion & Style',
'section_name': 'Fashion & Style',
'subsection_name': 'Weddings',
'byline': {'original': 'By JACLYN PEISER',
'person': [{'firstname': 'Jaclyn',
'middlename': None,
'lastname': 'PEISER',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/343dddd2-a9a1-5843-89a5-e2e9974dd01c',
'word_count': 0,
'uri': 'nyt://interactive/343dddd2-a9a1-5843-89a5-e2e9974dd01c'},
{'abstract': 'That great war horse of the Chinese-restaurant menu, beef and broccoli, awaits.',
'web_url': 'https://www.nytimes.com/2018/04/06/dining/what-to-cook-this-weekend-newsletter.html',
'snippet': 'That great war horse of the Chinese-restaurant menu, beef and broccoli, awaits.',
'lead_paragraph': 'Good morning. I wrote about beef and broccoli for The Times this week, that great Chinese-restaurant menu war horse. And, thanks to the chef Jonathan Wu, with an assist from the chef Dale Talde, I managed to put together a beef and broccoli recipe (above) that I think could become a regular part of your weeknight dinner rotation. It is ridiculously good.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-articleLarge-v3.jpg',
'height': 398,
'width': 600,
'legacy': {'xlarge': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-articleLarge-v3.jpg',
'xlargewidth': 600,
'xlargeheight': 398},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-popup-v3.jpg',
'height': 431,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-blog480-v3.jpg',
'height': 318,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-blog533-v3.jpg',
'height': 353,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-blog427-v3.jpg',
'height': 283,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-tmagSF-v3.jpg',
'height': 240,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-tmagArticle-v3.jpg',
'height': 392,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-slide-v3.jpg',
'height': 398,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-jumbo-v3.jpg',
'height': 679,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-superJumbo-v3.jpg',
'height': 1096,
'width': 1654,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-blog225-v3.jpg',
'height': 149,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-master1050-v3.jpg',
'height': 696,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-master675-v3.jpg',
'height': 447,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-master495-v3.jpg',
'height': 328,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-master180-v3.jpg',
'height': 119,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-master315-v3.jpg',
'height': 209,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-master768-v3.jpg',
'height': 509,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-sfSpan.jpg',
'height': 264,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-horizontalMediumAt2X.jpg',
'height': 1943,
'width': 2912,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-threeByTwoLargeAt2X-v3.jpg',
'height': 1097,
'width': 1645,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-threeByTwoMediumAt2X-v3.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-threeByTwoSmallAt2X-v3.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-articleInline-v3.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-hpSmall-v3.jpg',
'height': 108,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-blogSmallInline-v3.jpg',
'height': 100,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-copy-mediumFlexible177-v3.jpg',
'height': 117,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/04/08/magazine/08mag-eat1-copy/08mag-eat1-verticalTwoByThree735.jpg',
'height': 1104,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'What to Cook This Weekend',
'kicker': 'What to Cook',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Cooking and Cookbooks',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Recipes', 'rank': 2, 'major': 'N'}],
'pub_date': '2018-04-06T14:30:00+0000',
'document_type': 'article',
'news_desk': 'Dining',
'section_name': 'Food',
'byline': {'original': 'By Sam Sifton',
'person': [{'firstname': 'Sam',
'middlename': None,
'lastname': 'Sifton',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/274f4c0f-b037-5e14-b9a3-2007f524503d',
'word_count': 633,
'uri': 'nyt://article/274f4c0f-b037-5e14-b9a3-2007f524503d'},
{'abstract': 'Trapped in Spain’s recession, this novel’s protagonist embodies the effects of his country’s corruption.',
'web_url': 'https://www.nytimes.com/2016/01/24/books/review/on-the-edge-by-rafael-chirbes.html',
'snippet': 'Trapped in Spain’s recession, this novel’s protagonist embodies the effects of his country’s corruption.',
'lead_paragraph': '“On the Edge” is not a book you want to read in fits and starts. It is an anti-tweet, a brick of dense prose, that 70-year-old uncle who corners you at a holiday party, grabs you by the lapels and demands you hear him out. Your eyes sometimes glaze over, and you occasionally have to wipe a fleck of whitish spit off your face, but once you give yourself over to his story, you find there are plenty of rewards. ',
'print_section': 'BR',
'print_page': '12',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-watch268.jpg',
'height': 304,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-facebookJumbo.jpg',
'height': 540,
'width': 1031,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-articleLarge.jpg',
'height': 364,
'width': 600,
'legacy': {'xlarge': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 364},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-blog480.jpg',
'height': 291,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-blog427.jpg',
'height': 259,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-tmagArticle.jpg',
'height': 359,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-jumbo.jpg',
'height': 622,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-blog225.jpg',
'height': 137,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-master675.jpg',
'height': 410,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-master180.jpg',
'height': 109,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-master768.jpg',
'height': 466,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-popup.jpg',
'height': 395,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-blog533.jpg',
'height': 324,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-tmagSF.jpg',
'height': 220,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-slide.jpg',
'height': 364,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-superJumbo.jpg',
'height': 626,
'width': 1031,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-master495.jpg',
'height': 301,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-master315.jpg',
'height': 191,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-articleInline.jpg',
'height': 115,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-hpSmall.jpg',
'height': 99,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-blogSmallInline.jpg',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-mediumFlexible177.jpg',
'height': 107,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-sfSpan.jpg',
'height': 240,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-largeHorizontal375.jpg',
'height': 228,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/01/24/books/review/24LETHEMSUB1/0124-BKS-Lethem-SUB01-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': '‘On the Edge,’ by Rafael Chirbes',
'kicker': None,
'content_kicker': None,
'print_headline': 'Downward Mobility',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Chirbes, Rafael (1949-2015)',
'rank': 3,
'major': 'N'},
{'name': 'persons',
'value': 'Costa, Margaret Jull',
'rank': 4,
'major': 'N'},
{'name': 'creative_works',
'value': 'On the Edge (Book)',
'rank': 5,
'major': 'N'}],
'pub_date': '2016-01-22T12:20:23+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Mara Faye Lethem',
'person': [{'firstname': 'Mara',
'middlename': 'Faye',
'lastname': 'Lethem',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/58e06bd4-b672-50e0-8309-d5e796628319',
'word_count': 615,
'uri': 'nyt://article/58e06bd4-b672-50e0-8309-d5e796628319'}],
[{'abstract': 'The reassessment has spurred mixed responses from attendees of the conferences, which are known for their distraction-free environment.',
'web_url': 'https://www.nytimes.com/2015/06/11/fashion/ted-reconsiders-policy-barring-kids-from-conferences.html',
'snippet': 'The reassessment has spurred mixed responses from attendees of the conferences, which are known for their distraction-free environment.',
'lead_paragraph': 'Speakers at TED conferences are known for instigating change. But attendees can, too.',
'print_section': 'ST',
'print_page': '10',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-watch308-v3.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-watch268-v3.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-thumbWide-v3.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-thumbWide-v3.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoThumb-v3.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoLarge-v3.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-mediumThreeByTwo210-v3.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-mediumThreeByTwo225-v3.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-mediumThreeByTwo440-v3.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-mediumThreeByTwo252-v3.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-mediumThreeByTwo378-v3.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-facebookJumbo-v3.jpg',
'height': 502,
'width': 959,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-articleLarge-v2.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-blog480-v2.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-blog427-v2.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-tmagArticle-v2.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-jumbo-v2.jpg',
'height': 959,
'width': 959,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-blog225-v2.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-master675-v2.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-master180-v2.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-popup-v2.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-blog533-v2.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-tmagSF-v2.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-slide-v2.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-superJumbo-v2.jpg',
'height': 959,
'width': 959,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-master495-v2.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-master315-v2.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-articleInline-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-hpSmall-v2.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-blogSmallInline-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-mediumFlexible177-v2.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-sfSpan-v3.jpg',
'height': 395,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-largeHorizontal375-v3.jpg',
'height': 375,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSmall-v3.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoHpMedium-v3.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine600-v3.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine540-v3.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine495-v3.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine390-v3.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine480-v3.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine310-v3.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine225-v3.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine96-v3.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine768-v3.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-videoSixteenByNine150-v3.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-thumbStandard-v3.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-thumbStandard-v3.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-thumbLarge-v3.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-smallSquare252-v3.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-blogSmallThumb-v3.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/06/11/fashion/11NOTEDSUB/11NOTEDSUB-smallSquare168-v3.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'TED Reconsiders Policy Barring Kids From Conferences',
'kicker': 'Noted',
'content_kicker': None,
'print_headline': 'TED Reconsiders Child-Free Events',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'TED Conference',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'}],
'pub_date': '2015-06-09T19:55:54+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Style',
'byline': {'original': 'By Laura M. Holson',
'person': [{'firstname': 'Laura',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/90c2a05c-1370-5822-beed-dca3a15e10c2',
'word_count': 591,
'uri': 'nyt://article/90c2a05c-1370-5822-beed-dca3a15e10c2'},
{'abstract': 'Procter & Gamble announced it was moving the bulk of its North American media buying and planning business to Omnicom from Publicis Groupe.',
'web_url': 'https://www.nytimes.com/2015/12/08/business/media/procter-gamble-the-worlds-biggest-advertiser-switches-agencies.html',
'snippet': 'Procter & Gamble announced it was moving the bulk of its North American media buying and planning business to Omnicom from Publicis Groupe.',
'lead_paragraph': 'Procter & Gamble, the biggest advertiser in the world, announced on Monday that it was moving the bulk of its North American media buying and planning business to Omnicom from Publicis Groupe, in a sweeping change that underscores the broader upheaval in the ad industry.',
'print_section': 'B',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-superJumbo.jpg',
'height': 1366,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2015/07/10/business/08PROCTOR/08PROCTOR-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': 'Procter & Gamble, the World’s Biggest Advertiser, Switches Agencies',
'kicker': None,
'content_kicker': None,
'print_headline': 'Procter & Gamble, the World’s Biggest Advertiser, Is Switching Agencies',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'organizations',
'value': 'Procter & Gamble Co',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'Publicis Groupe',
'rank': 3,
'major': 'N'},
{'name': 'organizations',
'value': 'Omnicom Group Inc',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 5,
'major': 'N'}],
'pub_date': '2015-12-08T00:45:05+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'subsection_name': 'Media',
'byline': {'original': 'By Sydney Ember',
'person': [{'firstname': 'Sydney',
'middlename': None,
'lastname': 'Ember',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/cdd7bc7e-573b-5f44-a9df-9e4fb176ae48',
'word_count': 612,
'uri': 'nyt://article/cdd7bc7e-573b-5f44-a9df-9e4fb176ae48'},
{'abstract': 'Four robberies in Middlesex County took place during or just after the Hindu festival of Diwali, when families often have gold jewelry on hand as part of their celebration.',
'web_url': 'https://www.nytimes.com/2014/12/03/nyregion/home-invasion-stokes-indian-americans-fear-that-spree-may-not-be-over.html',
'snippet': 'Four robberies in Middlesex County took place during or just after the Hindu festival of Diwali, when families often have gold jewelry on hand as part of their celebration.',
'lead_paragraph': 'EDISON, N.J. — Neetu Singh was headed for the trash with a diaper from her 4-year-old son. She made her way from the family room to the back porch of her home in this Middlesex County suburb.',
'print_section': 'A',
'print_page': '26',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/12/03/nyregion/HOMEINVASION3/HOMEINVASION3-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Home Invasions Stoke Fears Among Indian-Americans in New Jersey',
'kicker': None,
'content_kicker': None,
'print_headline': 'Home Invasion Raises Indian-Americans’ Fears That Spree May Not Be Over',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Indian-Americans',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Grant, Jason', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Robberies and Thefts',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Middlesex County (NJ)',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Diwali (Hindu Festival)',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Gold', 'rank': 6, 'major': 'N'}],
'pub_date': '2014-12-03T03:42:20+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Jason Grant',
'person': [{'firstname': 'Jason',
'middlename': None,
'lastname': 'Grant',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/35f16047-5267-5486-8005-df3fb87de1bc',
'word_count': 617,
'uri': 'nyt://article/35f16047-5267-5486-8005-df3fb87de1bc'},
{'abstract': 'With the debuts of the E! series “Botched” and the Lifetime series “Abby’s Studio Rescue,” the Fix-It TV genre is growing.',
'web_url': 'https://www.nytimes.com/2014/06/24/arts/television/botched-and-abbys-studio-rescue-begin-on-tuesday.html',
'snippet': 'With the debuts of the E! series “Botched” and the Lifetime series “Abby’s Studio Rescue,” the Fix-It TV genre is growing.',
'lead_paragraph': 'Watch enough reality television, and one conclusion is inescapable: We can’t do anything right. Run a restaurant. Operate a bar. Manage a hotel. ',
'print_section': 'C',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'If It’s Broke, Reality TV Can Fix It',
'kicker': 'Critic’s Notebook',
'content_kicker': None,
'print_headline': 'If It’s Broke, Reality TV Can Fix It',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Television',
'rank': 2,
'major': 'N'},
{'name': 'organizations',
'value': 'E! Entertainment Television',
'rank': 3,
'major': 'N'},
{'name': 'creative_works',
'value': 'Botched (TV Program)',
'rank': 4,
'major': 'N'},
{'name': 'creative_works',
'value': "Abby's Studio Rescue (TV Program)",
'rank': 5,
'major': 'N'}],
'pub_date': '2014-06-23T22:19:23+0000',
'document_type': 'article',
'news_desk': 'Culture',
'section_name': 'Arts',
'subsection_name': 'Television',
'byline': {'original': 'By Neil Genzlinger',
'person': [{'firstname': 'Neil',
'middlename': None,
'lastname': 'Genzlinger',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/62074478-fb54-5c50-b407-10ddd2732666',
'word_count': 621,
'uri': 'nyt://article/62074478-fb54-5c50-b407-10ddd2732666'},
{'abstract': 'The show “Where Are We Going, Dad?” has some fathers wondering if they are devoting enough time to their children.',
'web_url': 'https://sinosphere.blogs.nytimes.com/2013/12/05/hit-tv-show-resonates-with-fathers-in-china/',
'snippet': 'The show “Where Are We Going, Dad?” has some fathers wondering if they are devoting enough time to their children.',
'lead_paragraph': 'The premise of China’s new favorite reality television show – “Where Are We Going, Dad?” – is simple. Five famous fathers from urban China accompany their infant children on 72-hour trips to the countryside, competing as father-child duos against the other coupled contestants.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Hit TV Show Resonates With Fathers in China',
'kicker': 'Sinosphere',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2013-12-06T03:30:55+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Adam Century',
'person': [{'firstname': 'Adam',
'middlename': None,
'lastname': 'Century',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/5b82da82-b838-52d2-ae46-f886f7429e39',
'word_count': 621,
'uri': 'nyt://article/5b82da82-b838-52d2-ae46-f886f7429e39'},
{'abstract': 'Swaddle blankets are increasingly becoming ways for new mothers to make design statements.',
'web_url': 'https://www.nytimes.com/2013/09/19/fashion/swaddle-blankets-babys-own-fashion-statement.html',
'snippet': 'Swaddle blankets are increasingly becoming ways for new mothers to make design statements.',
'lead_paragraph': 'Britt Levine, 33, who lives in Los Angeles and works in media sales for Clear Channel, has a 2-month-old baby boy and says that the colorful blankets she uses to wrap him, made by a company based there named Munchkin, are a way to extend her love of fashion to her newborn. Her regular afternoon promenades with her son at the Grove, an upscale mall, are a sea of strollers with colorful swaddle blankets draped over them. ',
'print_section': 'E',
'print_page': '8',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-articleLarge.jpg',
'height': 521,
'width': 600,
'legacy': {'xlarge': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 521},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-blog480.jpg',
'height': 417,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-blog427.jpg',
'height': 371,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-tmagArticle.jpg',
'height': 514,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-jumbo.jpg',
'height': 890,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-blog225.jpg',
'height': 195,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-master675.jpg',
'height': 586,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-master180.jpg',
'height': 156,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-popup.jpg',
'height': 500,
'width': 576,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-blog533.jpg',
'height': 463,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-tmagSF.jpg',
'height': 315,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-slide.jpg',
'height': 500,
'width': 576,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-superJumbo.jpg',
'height': 1212,
'width': 1395,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-master1050.jpg',
'height': 912,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-master495.jpg',
'height': 430,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-articleInline.jpg',
'height': 165,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-hpSmall.jpg',
'height': 142,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-blogSmallInline.jpg',
'height': 131,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-mediumFlexible177.jpg',
'height': 154,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-hpLarge.jpg',
'height': 255,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-largeWidescreen573.jpg',
'height': 286,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/09/19/fashion/19ZNOTED1_SPAN/19zNOTED1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Swaddle Blankets: Baby’s Own Fashion Statement',
'kicker': 'Noted',
'content_kicker': None,
'print_headline': 'Not Just a Newborn, But a Canvas of Sorts',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 3,
'major': 'N'}],
'pub_date': '2013-09-18T21:55:08+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Shivani Vora',
'person': [{'firstname': 'Shivani',
'middlename': None,
'lastname': 'Vora',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/023be6fa-f27e-5a57-98d3-ad6789e105b7',
'word_count': 601,
'uri': 'nyt://article/023be6fa-f27e-5a57-98d3-ad6789e105b7'},
{'abstract': 'The handling of Thomas Eric Duncan, the first person to test positive for Ebola in the United States, is detailed here, based on medical documents provided to The New York Times.',
'web_url': 'https://www.nytimes.com/interactive/2014/10/25/us/ebola-dallas-timeline.html',
'snippet': 'The handling of Thomas Eric Duncan, the first person to test positive for Ebola in the United States, is detailed here, based on medical documents provided to The New York Times.',
'lead_paragraph': 'The handling of Thomas Eric Duncan, the first person to test positive for Ebola in the United States, is detailed here, based on medical documents provided to The New York Times.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-thumbWide.png',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-thumbWide.png'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoThumb.png',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoLarge.png',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-mediumThreeByTwo210.png',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-mediumThreeByTwo225.png',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-mediumThreeByTwo440.png',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoFifteenBySeven1305.png',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-miniMoth.png',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-windowsTile336H.png',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-articleLarge.png',
'height': 367,
'width': 600,
'legacy': {'xlarge': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-articleLarge.png',
'xlargewidth': 600,
'xlargeheight': 367},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-blog480.png',
'height': 294,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-blog427.png',
'height': 261,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-tmagArticle.png',
'height': 362,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-jumbo.png',
'height': 627,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-blog225.png',
'height': 138,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-master675.png',
'height': 413,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-master180.png',
'height': 110,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-popup.png',
'height': 398,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-blog533.png',
'height': 326,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-tmagSF.png',
'height': 222,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-slide.png',
'height': 367,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-superJumbo.png',
'height': 886,
'width': 1447,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-master1050.png',
'height': 643,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-master495.png',
'height': 303,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-master315.png',
'height': 193,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-square320.png',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-filmstrip.png',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-square640.png',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-moth.png',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-mediumSquare149.png',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-articleInline.png',
'height': 116,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-hpSmall.png',
'height': 100,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-blogSmallInline.png',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-mediumFlexible177.png',
'height': 108,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-sfSpan.png',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-largeHorizontal375.png',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-hpLarge.png',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-largeWidescreen573.png',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-largeWidescreen1050.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSmall.png',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoHpMedium.png',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine600.png',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine540.png',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine495.png',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine390.png',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine480.png',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine310.png',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine225.png',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine96.png',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine768.png',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine150.png',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-videoSixteenByNine1050.png',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-thumbStandard.png',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-thumbStandard.png',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-thumbLarge.png',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/10/25/us/ebola-dallas-timeline-1414253309230/ebola-dallas-timeline-1414253309230-blogSmallThumb.png',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Details of Duncan’s Treatment Reveal a Wobbly First Response to Ebola',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Ebola Virus',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'Dallas (Tex)', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Texas Health Presbyterian Hospital',
'rank': 3,
'major': 'N'}],
'pub_date': '2014-10-25T16:49:24+0000',
'document_type': 'multimedia',
'news_desk': 'U.S.',
'section_name': 'U.S.',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'Interactive Feature',
'_id': 'nyt://interactive/4705fc52-3ed9-5d75-9a8a-502bd487c231',
'word_count': 0,
'uri': 'nyt://interactive/4705fc52-3ed9-5d75-9a8a-502bd487c231'},
{'abstract': 'Alexandra Jacobs reviews the collections of Coach, Peter Som, Jason Wu and Creatures of the Wind.',
'web_url': 'https://www.nytimes.com/2014/09/06/fashion/coach-peter-som-jason-wu-and-creatures-of-the-wind-fashion-week-spring-2015.html',
'snippet': 'Alexandra Jacobs reviews the collections of Coach, Peter Som, Jason Wu and Creatures of the Wind.',
'lead_paragraph': 'Coach has left the stable, and the horses are running wild down the road.',
'print_section': 'A',
'print_page': '15',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-articleLarge.jpg',
'height': 352,
'width': 600,
'legacy': {'xlarge': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 352},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-blog480.jpg',
'height': 281,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-blog427.jpg',
'height': 250,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-tmagArticle.jpg',
'height': 347,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-jumbo.jpg',
'height': 600,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-blog225.jpg',
'height': 132,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-master675.jpg',
'height': 396,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-master180.jpg',
'height': 105,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-popup.jpg',
'height': 381,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-blog533.jpg',
'height': 312,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-tmagSF.jpg',
'height': 212,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-slide.jpg',
'height': 352,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-superJumbo.jpg',
'height': 1200,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-master1050.jpg',
'height': 615,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-master495.jpg',
'height': 290,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-master315.jpg',
'height': 185,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-articleInline.jpg',
'height': 111,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-hpSmall.jpg',
'height': 96,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-blogSmallInline.jpg',
'height': 88,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-mediumFlexible177.jpg',
'height': 104,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2014/09/06/fashion/06REVIEW2_COMBO/06REVIEW2-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A Mixed Bag of Looks: Coach, Peter Som, Jason Wu and Creatures of the Wind',
'kicker': 'Fashion Review',
'content_kicker': None,
'print_headline': 'A Mixed Bag of Looks',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'New York Fashion Week',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Som, Peter', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Wu, Jason', 'rank': 4, 'major': 'N'},
{'name': 'organizations',
'value': 'Creatures of the Wind (Fashion Label)',
'rank': 5,
'major': 'N'},
{'name': 'organizations', 'value': 'Coach Inc', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Fashion and Apparel',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'September Fashion Week (2014)',
'rank': 8,
'major': 'N'}],
'pub_date': '2014-09-06T01:49:32+0000',
'document_type': 'article',
'news_desk': 'Styles',
'section_name': 'Fashion & Style',
'byline': {'original': 'By Alexandra Jacobs',
'person': [{'firstname': 'Alexandra',
'middlename': None,
'lastname': 'Jacobs',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/09f1554d-5ce9-516d-835a-3312279400e9',
'word_count': 579,
'uri': 'nyt://article/09f1554d-5ce9-516d-835a-3312279400e9'},
{'abstract': 'You can get anything you want in either city, as long as you know the right person.',
'web_url': 'https://india.blogs.nytimes.com/2013/02/05/the-mumbainew-york-photo-project-meet-the-wallas/',
'snippet': 'You can get anything you want in either city, as long as you know the right person.',
'lead_paragraph': 'While much has changed in New York and Mumbai over the past 50 years, the bazaar, or the marketplace, is still the center of commercial activity for both these cities.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Mumbai/New York Photo Project: Meet the ‘Wallas’',
'kicker': 'India Ink',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Flowers and Plants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Gardens and Gardening',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Historic Buildings and Sites',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Laundry and Laundromats',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Real Estate (Commercial)',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'ALTMAN, ROBERT', 'rank': 6, 'major': 'N'},
{'name': 'organizations',
'value': 'Chelsea Market',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Jamestown Properties',
'rank': 8,
'major': 'N'},
{'name': 'glocations', 'value': 'India', 'rank': 9, 'major': 'N'},
{'name': 'glocations',
'value': 'Manhattan (NYC)',
'rank': 10,
'major': 'N'},
{'name': 'glocations',
'value': 'Mumbai (India)',
'rank': 11,
'major': 'N'},
{'name': 'glocations',
'value': 'New York City',
'rank': 12,
'major': 'N'}],
'pub_date': '2013-02-05T11:47:34+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Nisha Sondhe and Neha Thirani Bagri',
'person': [{'firstname': 'Nisha',
'middlename': None,
'lastname': 'Sondhe',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Neha',
'middlename': 'Thirani',
'lastname': 'Bagri',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/05506075-0272-5bfc-92de-1379ba6e11cc',
'word_count': 566,
'uri': 'nyt://article/05506075-0272-5bfc-92de-1379ba6e11cc'},
{'abstract': 'Benjamín Ávila’s film is a semiautobiographical story about a 12-year-old being raised in the late 1970s in Argentina by activists opposed to the ruling military junta.',
'web_url': 'https://www.nytimes.com/2013/01/11/movies/clandestine-childhood-directed-by-benjamin-avila.html',
'snippet': 'Benjamín Ávila’s film is a semiautobiographical story about a 12-year-old being raised in the late 1970s in Argentina by activists opposed to the ruling military junta.',
'lead_paragraph': 'In “Clandestine Childhood” a 12-year-old Argentine boy is forced into playing a dangerous game of pretend. It’s 1979, three years after a military coup d’état at home and exile in Cuba with his family. Now the boy, Juan (Teo Gutiérrez Moreno), who will go by Ernesto, is returning to Argentina with his parents, Charo (Natalia Oreiro) and Daniel (César Troncoso), and his baby sister, Victoria. “We think,” Charo tells Juan, “it’s the right time to carry on fighting.” In between changing diapers she and Daniel will soon be fighting Argentina’s right-wing military dictatorship in the name of freedom and country — and saluting fallen compañeros with rousing cries of “Perón or death!”',
'print_section': 'C',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-articleLarge.jpg',
'height': 380,
'width': 600,
'legacy': {'xlarge': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 380},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/CLANDESTINE-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/CLANDESTINE-jumbo.jpg',
'height': 768,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-articleLarge.jpg',
'height': 380,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/CLANDESTINE-superJumbo.jpg',
'height': 1536,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-sfSpan.jpg',
'height': 302,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Raised by Political Activists in a Dictatorship’s Shadow',
'kicker': 'Movie Review',
'content_kicker': None,
'print_headline': 'Raised by Political Activists in a Dictatorship’s Shadow',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Avila, Benjamin', 'rank': 3, 'major': 'N'}],
'pub_date': '2013-01-10T22:27:59+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Manohla Dargis',
'person': [{'firstname': 'Manohla',
'middlename': None,
'lastname': 'Dargis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/61120158-09af-5280-8369-bb085eab2791',
'word_count': 628,
'uri': 'nyt://article/61120158-09af-5280-8369-bb085eab2791'}],
[{'abstract': 'Animals provide metaphors in these linked stories.',
'web_url': 'https://www.nytimes.com/2016/02/07/books/review/beasts-and-children-by-amy-parker.html',
'snippet': 'Animals provide metaphors in these linked stories.',
'lead_paragraph': '“The White Elephant,” the capacious first story in Amy Parker’s engaging linked collection, “Beasts and Children,” tracks the disintegration of 10-year-old Cissy Bowman’s family. The dusty mounted heads — bison, caribou, moose — in her father’s trophy room haunt the story with their unsettling eyes. “Most stories bear as little relation to reality as Daddy’s trophies do to the warm and living animal,” Cissy’s mother warns her daughters — and the reader. “An animal looks back at you, but a trophy’s gaze never offers anything but a distorted and diminished reflection of your face.”',
'print_section': 'BR',
'print_page': '23',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-facebookJumbo-v2.jpg',
'height': 349,
'width': 666,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-articleLarge.jpg',
'height': 838,
'width': 600,
'legacy': {'xlarge': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 838},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-blog480.jpg',
'height': 670,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-blog427.jpg',
'height': 596,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-tmagArticle.jpg',
'height': 827,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-jumbo.jpg',
'height': 930,
'width': 666,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-blog225.jpg',
'height': 314,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-master180.jpg',
'height': 251,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-popup.jpg',
'height': 500,
'width': 359,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-blog533.jpg',
'height': 744,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-tmagSF.jpg',
'height': 505,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-slide.jpg',
'height': 500,
'width': 359,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-superJumbo.jpg',
'height': 930,
'width': 666,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-master495.jpg',
'height': 691,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-master315.jpg',
'height': 440,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-articleInline.jpg',
'height': 265,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-hpSmall.jpg',
'height': 228,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-blogSmallInline.jpg',
'height': 211,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-mediumFlexible177.jpg',
'height': 247,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-hpLarge.jpg',
'height': 288,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-largeWidescreen573.jpg',
'height': 323,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2016/02/07/books/review/0207-BKS-QUADE-WEBONLY/0207-BKS-QUADE-WEBONLY-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'}],
'headline': {'main': '‘Beasts and Children,’ by Amy Parker',
'kicker': None,
'content_kicker': None,
'print_headline': 'Monkeys and Elephants',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons',
'value': 'Parker, Amy E (1975- )',
'rank': 2,
'major': 'N'},
{'name': 'creative_works',
'value': 'Beasts and Children (Book)',
'rank': 3,
'major': 'N'}],
'pub_date': '2016-02-05T16:04:51+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Kirstin Valdez Quade',
'person': [{'firstname': 'Kirstin',
'middlename': 'Valdez',
'lastname': 'Quade',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/b5501f8c-723a-5533-8f76-ea491e4fbd3b',
'word_count': 619,
'uri': 'nyt://article/b5501f8c-723a-5533-8f76-ea491e4fbd3b'},
{'abstract': 'A professional golfer has flown more than 15 million miles, and once scared a woman who thought he had died in the aisle of a plane.',
'web_url': 'https://www.nytimes.com/2012/11/06/business/a-golf-pro-learns-to-be-comfortable-in-the-air.html',
'snippet': 'A professional golfer has flown more than 15 million miles, and once scared a woman who thought he had died in the aisle of a plane.',
'lead_paragraph': 'ALL I can say is, I would like to meet the person who has flown more than me. I have been traveling for about 60 years, 90 percent of which has been on commercial airlines. I’ve logged more than 15 million miles. \xa0',
'print_section': 'B',
'print_page': '5',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-blog480.jpg',
'height': 312,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-jumbo.jpg',
'height': 665,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-popup.jpg',
'height': 422,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-superJumbo.jpg',
'height': 1329,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-articleInline.jpg',
'height': 240,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-sfSpan.jpg',
'height': 256,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/11/06/business/Flier/Flier-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/11/06/business/Flier/Flier-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'A Lifetime of Coping With the Trials of Flying',
'kicker': 'Frequent Flier',
'content_kicker': None,
'print_headline': 'A Lifetime of Coping With the Trials of Flying',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Player, Gary', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Business Travel', 'rank': 3, 'major': 'N'}],
'pub_date': '2012-11-05T22:50:11+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Gary Player',
'person': [{'firstname': 'Gary',
'middlename': None,
'lastname': 'Player',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/48adef76-5ce3-5dc8-a1aa-8b84d38b2afd',
'word_count': 616,
'uri': 'nyt://article/48adef76-5ce3-5dc8-a1aa-8b84d38b2afd'},
{'abstract': 'Poppin, an e-commerce start-up that opened to the public on Tuesday, thinks it has a solution to the problems suffered by office supply companies like Staples: an uncluttered Web site, colorful staplers and pens and designing, manufacturing and selling products itself. But will penny-pinching office managers order $14 magenta staplers?',
'web_url': 'https://bits.blogs.nytimes.com/2012/09/05/a-start-up-offers-a-new-way-to-shop-for-office-supplies/',
'snippet': 'Poppin, an e-commerce start-up that opened to the public on Tuesday, thinks it has a solution to the problems suffered by office supply companies like Staples: an uncluttered Web site, colorful staplers and pens and designing, manufacturing and se...',
'lead_paragraph': 'The renaissance of e-commerce has brought us new ways to shop for pants, diapers and eyeglasses. Next up: office supplies.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/31/technology/31bits-poppin/31bits-poppin-blog480.jpg',
'height': 146,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/31/technology/31bits-poppin/31bits-poppin-tmagArticle.jpg',
'height': 180,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/31/technology/31bits-poppin/31bits-poppin-jumbo.jpg',
'height': 180,
'width': 592,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/31/technology/31bits-poppin/31bits-poppin-popup.jpg',
'height': 180,
'width': 592,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/31/technology/31bits-poppin/31bits-poppin-superJumbo.jpg',
'height': 180,
'width': 592,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/31/technology/31bits-poppin/31bits-poppin-articleInline.jpg',
'height': 58,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/08/31/technology/31bits-poppin/31bits-poppin-sfSpan.jpg',
'height': 120,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'}],
'headline': {'main': 'Start-Up Offers a New Way to Shop for Office Supplies',
'kicker': 'Bits',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2012-09-05T15:49:03+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Technology',
'byline': {'original': 'By Claire Cain Miller',
'person': [{'firstname': 'Claire',
'middlename': 'Cain',
'lastname': 'Miller',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/c6258850-8acb-51c7-96c0-927ade387867',
'word_count': 544,
'uri': 'nyt://article/c6258850-8acb-51c7-96c0-927ade387867'},
{'abstract': 'You can get anything you want in either city, as long as you know the right person.',
'web_url': 'https://india.blogs.nytimes.com/2013/02/05/the-mumbainew-york-photo-project-meet-the-wallas/',
'snippet': 'You can get anything you want in either city, as long as you know the right person.',
'lead_paragraph': 'While much has changed in New York and Mumbai over the past 50 years, the bazaar, or the marketplace, is still the center of commercial activity for both these cities.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'The Mumbai/New York Photo Project: Meet the ‘Wallas’',
'kicker': 'India Ink',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Flowers and Plants',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Gardens and Gardening',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Historic Buildings and Sites',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Laundry and Laundromats',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Real Estate (Commercial)',
'rank': 5,
'major': 'N'},
{'name': 'persons', 'value': 'ALTMAN, ROBERT', 'rank': 6, 'major': 'N'},
{'name': 'organizations',
'value': 'Chelsea Market',
'rank': 7,
'major': 'N'},
{'name': 'organizations',
'value': 'Jamestown Properties',
'rank': 8,
'major': 'N'},
{'name': 'glocations', 'value': 'India', 'rank': 9, 'major': 'N'},
{'name': 'glocations',
'value': 'Manhattan (NYC)',
'rank': 10,
'major': 'N'},
{'name': 'glocations',
'value': 'Mumbai (India)',
'rank': 11,
'major': 'N'},
{'name': 'glocations',
'value': 'New York City',
'rank': 12,
'major': 'N'}],
'pub_date': '2013-02-05T11:47:34+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'World',
'subsection_name': 'Asia Pacific',
'byline': {'original': 'By Nisha Sondhe and Neha Thirani Bagri',
'person': [{'firstname': 'Nisha',
'middlename': None,
'lastname': 'Sondhe',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Neha',
'middlename': 'Thirani',
'lastname': 'Bagri',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/05506075-0272-5bfc-92de-1379ba6e11cc',
'word_count': 566,
'uri': 'nyt://article/05506075-0272-5bfc-92de-1379ba6e11cc'},
{'abstract': 'My wife and I struck a dubious-sounding pact that went on to revolutionize our marriage: sex for cleaning.',
'web_url': 'https://parenting.blogs.nytimes.com/2013/02/14/confessions-of-a-domestic-gigolo/',
'snippet': 'My wife and I struck a dubious-sounding pact that went on to revolutionize our marriage: sex for cleaning.',
'lead_paragraph': 'A romantic Valentine’s is close. Like, broom-closet close. All you need for a sexy good time is a bucket of cleaning supplies and maybe a notary public — depending on how litigious you are. My wife and I are horrible at paperwork, so we struck our deal with a handshake. It was a dubious-sounding pact that went on to revolutionize our marriage: sex for cleaning.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Confessions of a Domestic Gigolo',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Marriages',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': "Valentine's Day", 'rank': 3, 'major': 'N'}],
'pub_date': '2013-02-14T14:25:34+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Patrick Wensink',
'person': [{'firstname': 'Patrick',
'middlename': None,
'lastname': 'Wensink',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/da5d40c0-6b12-50c7-9e59-52af83e937f2',
'word_count': 589,
'uri': 'nyt://article/da5d40c0-6b12-50c7-9e59-52af83e937f2'},
{'abstract': 'Benjamín Ávila’s film is a semiautobiographical story about a 12-year-old being raised in the late 1970s in Argentina by activists opposed to the ruling military junta.',
'web_url': 'https://www.nytimes.com/2013/01/11/movies/clandestine-childhood-directed-by-benjamin-avila.html',
'snippet': 'Benjamín Ávila’s film is a semiautobiographical story about a 12-year-old being raised in the late 1970s in Argentina by activists opposed to the ruling military junta.',
'lead_paragraph': 'In “Clandestine Childhood” a 12-year-old Argentine boy is forced into playing a dangerous game of pretend. It’s 1979, three years after a military coup d’état at home and exile in Cuba with his family. Now the boy, Juan (Teo Gutiérrez Moreno), who will go by Ernesto, is returning to Argentina with his parents, Charo (Natalia Oreiro) and Daniel (César Troncoso), and his baby sister, Victoria. “We think,” Charo tells Juan, “it’s the right time to carry on fighting.” In between changing diapers she and Daniel will soon be fighting Argentina’s right-wing military dictatorship in the name of freedom and country — and saluting fallen compañeros with rousing cries of “Perón or death!”',
'print_section': 'C',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-articleLarge.jpg',
'height': 380,
'width': 600,
'legacy': {'xlarge': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 380},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/CLANDESTINE-blog480.jpg',
'height': 360,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/CLANDESTINE-jumbo.jpg',
'height': 768,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-articleLarge.jpg',
'height': 380,
'width': 600,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/CLANDESTINE-superJumbo.jpg',
'height': 1536,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-sfSpan.jpg',
'height': 302,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/01/11/arts/11CLANDESTINE_SPAN/11CLANDESTINE_SPAN-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Raised by Political Activists in a Dictatorship’s Shadow',
'kicker': 'Movie Review',
'content_kicker': None,
'print_headline': 'Raised by Political Activists in a Dictatorship’s Shadow',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Movies',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Avila, Benjamin', 'rank': 3, 'major': 'N'}],
'pub_date': '2013-01-10T22:27:59+0000',
'document_type': 'article',
'news_desk': 'Weekend',
'section_name': 'Movies',
'byline': {'original': 'By Manohla Dargis',
'person': [{'firstname': 'Manohla',
'middlename': None,
'lastname': 'Dargis',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/61120158-09af-5280-8369-bb085eab2791',
'word_count': 628,
'uri': 'nyt://article/61120158-09af-5280-8369-bb085eab2791'},
{'abstract': 'After weeks of helping residents affected by Hurricane Sandy, volunteers and several relief organizations in Midland Beach on Staten Island said they were told to leave by an official from the mayor’s office.',
'web_url': 'https://cityroom.blogs.nytimes.com/2012/12/01/staten-island-volunteers-fear-city-will-hamper-their-hurricane-relief-efforts/',
'snippet': 'After weeks of helping residents affected by Hurricane Sandy, volunteers and several relief organizations in Midland Beach on Staten Island said they were told to leave by an official from the mayor’s office.',
'lead_paragraph': 'After the floodwaters created by Hurricane Sandy began receding from the Midland Beach neighborhood of Staten Island, one of the first things that Aiman Youseff did was to set up a table on the sidewalk near what was left of his house at 489 Midland Avenue.',
'print_section': 'A',
'print_page': '26',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-articleLarge.jpg',
'height': 360,
'width': 600,
'legacy': {'xlarge': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 360},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2012/12/03/nyregion/VOLUNTEERS1/VOLUNTEERS1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'}],
'headline': {'main': 'Staten Island Volunteers Fear City Will Hamper Their Hurricane Relief Efforts',
'kicker': 'City Room',
'content_kicker': None,
'print_headline': 'Hurricane Relief Volunteers on Staten Island Say City Official Told Them to Leave',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Humanitarian Aid',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Hurricane Sandy (2012)',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Volunteers and Community Service',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Staten Island (NYC)',
'rank': 4,
'major': 'N'}],
'pub_date': '2012-12-02T01:26:07+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'New York',
'byline': {'original': 'By Colin Moynihan and Christopher Maag',
'person': [{'firstname': 'Colin',
'middlename': None,
'lastname': 'Moynihan',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Christopher',
'middlename': None,
'lastname': 'Maag',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/89af5990-3770-519a-8684-ceed880c88e6',
'word_count': 595,
'uri': 'nyt://article/89af5990-3770-519a-8684-ceed880c88e6'},
{'abstract': 'A review of books about Leonard Bernstein, Manhattan’s geography and the civil liberties at stake during an anti-communism purge in the early 1950s.',
'web_url': 'https://www.nytimes.com/2013/02/10/nyregion/a-composer-who-talked-for-hours.html',
'snippet': 'A review of books about Leonard Bernstein, Manhattan’s geography and the civil liberties at stake during an anti-communism purge in the early 1950s.',
'lead_paragraph': '“Unlike almost any other classical performer of recent times, Leonard Bernstein adamantly, and sometimes controversially, refused to compartmentalize and separate his emotional, intellectual, political, erotic and spiritual longings from the musical experience,” Jonathan Cott writes in “Dinner With Lenny: The Last Long Interview with Leonard Bernstein” (Oxford University Press, $24.95).',
'print_section': 'MB',
'print_page': '3',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/02/08/nyregion/book/book-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2013/02/08/nyregion/book/book-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-superJumbo.jpg',
'height': 1854,
'width': 1853,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/02/08/nyregion/book/book-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/02/08/nyregion/book/book-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'A Composer Who Talked for Hours',
'kicker': 'Bookshelf',
'content_kicker': None,
'print_headline': 'A Composer Who Talked for Hours',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Cott, Jonathan', 'rank': 7, 'major': 'N'},
{'name': 'persons', 'value': 'Heins, Marjorie', 'rank': 8, 'major': 'N'}],
'pub_date': '2013-02-09T03:44:16+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Sam Roberts',
'person': [{'firstname': 'Sam',
'middlename': None,
'lastname': 'Roberts',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/30f9bc70-ce24-5778-852f-2eca8f8d446d',
'word_count': 575,
'uri': 'nyt://article/30f9bc70-ce24-5778-852f-2eca8f8d446d'},
{'abstract': 'Hurricane Sandy offers the disaster agency a chance to show the lessons it learned from its poorly managed response to Hurricane Katrina.',
'web_url': 'https://www.nytimes.com/2012/10/30/us/hurricane-sandy-a-chance-at-redemption-for-fema.html',
'snippet': 'Hurricane Sandy offers the disaster agency a chance to show the lessons it learned from its poorly managed response to Hurricane Katrina.',
'lead_paragraph': 'WASHINGTON\xa0 — \xa0As Hurricane Sandy approached landfall Monday, Federal Emergency Management Agency officials here were struggling with the question of how to deploy resources in the face of a powerful, far-reaching storm that was bearing down on a string of the nation’s largest metropolitan areas.',
'print_section': 'A',
'print_page': '23',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Hurricane Sandy a Chance at Redemption for FEMA',
'kicker': None,
'content_kicker': None,
'print_headline': 'A Chance To Show Progress At FEMA',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Hurricane Sandy (2012)',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Fugate, W Craig', 'rank': 2, 'major': 'N'},
{'name': 'organizations',
'value': 'Federal Emergency Management Agency',
'rank': 3,
'major': 'N'}],
'pub_date': '2012-10-30T01:24:11+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Michael S. Schmidt and Eric Lipton',
'person': [{'firstname': 'Michael',
'middlename': 'S.',
'lastname': 'Schmidt',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Eric',
'middlename': None,
'lastname': 'Lipton',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a00f96c2-3c0a-5dfb-84a6-53a2fe67d6c4',
'word_count': 614,
'uri': 'nyt://article/a00f96c2-3c0a-5dfb-84a6-53a2fe67d6c4'},
{'abstract': 'The filling of a vacant seat led to residents’ rushing elected officials and to Cory A. Booker’s onetime supporters shouting accusations of betrayal.',
'web_url': 'https://www.nytimes.com/2012/11/22/nyregion/melee-at-newark-council-meeting-shows-a-rift-in-cory-bookers-support.html',
'snippet': 'The filling of a vacant seat led to residents’ rushing elected officials and to Cory A. Booker’s onetime supporters shouting accusations of betrayal.',
'lead_paragraph': 'A showdown between the two archrivals of recent Newark politics, Mayor Cory A. Booker and his predecessor, Sharpe James, exploded into a melee Tuesday night as the City Council struggled to fill a vacant seat.',
'print_section': 'A',
'print_page': '31',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Melee at Newark Council Meeting Shows Rift in Mayor’s Support',
'kicker': None,
'content_kicker': None,
'print_headline': "Melee After Vote at Newark City Council Meeting Shows Fracture in Mayor's Support",
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Newark (NJ)',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Elections, City Councils',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Demonstrations, Protests, and Riots',
'rank': 3,
'major': 'N'},
{'name': 'persons', 'value': 'Booker, Cory A', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'James, John Sharpe',
'rank': 5,
'major': 'N'}],
'pub_date': '2012-11-22T02:02:54+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Kate Zernike',
'person': [{'firstname': 'Kate',
'middlename': None,
'lastname': 'Zernike',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/81e0b948-437d-5a90-97fe-2e4f896bddbf',
'word_count': 604,
'uri': 'nyt://article/81e0b948-437d-5a90-97fe-2e4f896bddbf'}],
[{'abstract': 'The C-level celebrity version of motherhood: parenting as marketing opportunity. Welcome to the era of Consumer Mommy.',
'web_url': 'https://parenting.blogs.nytimes.com/2012/04/30/farewell-dr-spock-hello-snooki/',
'snippet': 'The C-level celebrity version of motherhood: parenting as marketing opportunity. Welcome to the era of Consumer Mommy.',
'lead_paragraph': 'For all too many of us, motherhood has the potential to be a salary and job killer. But as Jacob Bernstein so excellently reported in the Styles section on Sunday, it has turned into a savvy career move for an increasing number of C-level celebrities for whom, as he puts it, “motherhood pays.”',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Farewell, Dr. Spock. Hello, Snooki.',
'kicker': 'Motherlode',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Babies and Infants',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Celebrities', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Families and Family Life',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 5, 'major': 'N'},
{'name': 'subject',
'value': 'Reality Television',
'rank': 6,
'major': 'N'},
{'name': 'persons',
'value': 'Badinter, Elisabeth',
'rank': 7,
'major': 'N'},
{'name': 'persons', 'value': 'Frankel, Bethenny', 'rank': 8, 'major': 'N'},
{'name': 'persons', 'value': 'Richie, Nicole', 'rank': 9, 'major': 'N'},
{'name': 'persons', 'value': 'Zoe, Rachel', 'rank': 10, 'major': 'N'}],
'pub_date': '2012-04-30T18:47:31+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Style',
'byline': {'original': 'By Helaine Olen',
'person': [{'firstname': 'Helaine',
'middlename': None,
'lastname': 'Olen',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/475739e6-dda6-5a59-aecc-1eeede931ce3',
'word_count': 633,
'uri': 'nyt://article/475739e6-dda6-5a59-aecc-1eeede931ce3'},
{'abstract': 'Was a prize to a pitcher for a near-perfect game “some of the best dollars invested in publicity,” or a squandering of taxpayers’ equity?',
'web_url': 'https://www.nytimes.com/2010/06/05/business/05corvette.html',
'snippet': 'Was a prize to a pitcher for a near-perfect game “some of the best dollars invested in publicity,” or a squandering of taxpayers’ equity?',
'lead_paragraph': 'DETROIT \x97 A free sports car for a Detroit Tigers baseball player was not among the reasons the government saved General Motors from financial collapse. Nor was a year’s supply of diapers and other gifts for a Minnesota woman who gave birth behind the wheel of a Chevrolet Cobalt.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/05/business/05Corvette/05Corvette-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/05/business/05Corvette/05Corvette-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/05/business/05Corvette/05Corvette-sfSpan.jpg',
'height': 250,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/06/05/business/05Corvette/05Corvette-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2010/06/05/business/05Corvette/05Corvette-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'G.M.’s Gift of a Luxury Car Stuns a Few',
'kicker': None,
'content_kicker': None,
'print_headline': 'Luxury Car As a Gift Stuns a Few',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Detroit (Mich)',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'Detroit Tigers',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Automobiles', 'rank': 3, 'major': 'N'},
{'name': 'persons', 'value': 'Issa, Darrell E', 'rank': 4, 'major': 'N'},
{'name': 'persons',
'value': 'Galarraga, Armando',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Public Relations and Publicity',
'rank': 6,
'major': 'N'},
{'name': 'organizations',
'value': 'General Motors',
'rank': 7,
'major': 'N'}],
'pub_date': '2010-06-04T23:19:04+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Nick Bunkley',
'person': [{'firstname': 'Nick',
'middlename': None,
'lastname': 'Bunkley',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/4348c9b3-7cf3-5ca6-a8ff-059fac791213',
'word_count': 642,
'uri': 'nyt://article/4348c9b3-7cf3-5ca6-a8ff-059fac791213'},
{'abstract': 'A novel about discovering and appreciating your own gifts — even if those gifts mainly consist of the ability to spin a hard-boiled egg by pulling on your ears.',
'web_url': 'https://www.nytimes.com/2010/07/18/books/review/Meadows-t.html',
'snippet': 'A novel about discovering and appreciating your own gifts — even if those gifts mainly consist of the ability to spin a hard-boiled egg by pulling on your ears.',
'lead_paragraph': 'I admit it. When I read the last two pages of “Abby Carnelia’s One and Only Magical Power,” a novel for 8- to-12-year-olds, I cried. On the surface this is a tale about a regular girl with a pointless magical power. But it got me with its message of discovering and appreciating your own gifts — even if those gifts mainly consist of the ability to spin a hard-boiled egg by pulling on your ears.',
'print_section': 'BR',
'print_page': '15',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Hocus-Pocus',
'kicker': 'Children’s Books',
'content_kicker': None,
'print_headline': 'Hocus-Pocus',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Pogue, David', 'rank': 2, 'major': 'N'}],
'pub_date': '2010-07-16T15:51:07+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Susannah Meadows',
'person': [{'firstname': 'Susannah',
'middlename': None,
'lastname': 'Meadows',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/f36dddcd-0fec-5e43-9118-4a8b49451928',
'word_count': 642,
'uri': 'nyt://article/f36dddcd-0fec-5e43-9118-4a8b49451928'},
{'abstract': 'Ann Louise Bardach, a former contract writer for The Times, denied a defense lawyer’s charge that she had misrepresented what Luis Posada Carriles said during three days of interviews in 1998.',
'web_url': 'https://www.nytimes.com/2011/03/22/us/22posada.html',
'snippet': 'Ann Louise Bardach, a former contract writer for The Times, denied a defense lawyer’s charge that she had misrepresented what Luis Posada Carriles said during three days of interviews in 1998.',
'lead_paragraph': 'EL PASO — A defense lawyer tried to discredit a former contract writer for The New York Times in the perjury trial of a Cuban exile here on Monday, forcing her to defend a 1998 front-page article that said the defendant had taken credit for orchestrating a series of bombings in Havana.',
'print_section': 'A',
'print_page': '18',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/22/us/POSADA/POSADA-jumbo.jpg',
'height': 1024,
'width': 682,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/22/us/POSADA/POSADA-popup.jpg',
'height': 500,
'width': 333,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/22/us/POSADA/POSADA-articleInline.jpg',
'height': 285,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/03/22/us/POSADA/POSADA-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/03/22/us/POSADA/POSADA-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Lawyer in Perjury Case Tries to Discredit Reporter',
'kicker': None,
'content_kicker': None,
'print_headline': 'Lawyer in Perjury Case Tries to Discredit Reporter',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Posada Carriles, Luis',
'rank': 1,
'major': 'N'},
{'name': 'organizations',
'value': 'New York Times',
'rank': 2,
'major': 'N'},
{'name': 'persons',
'value': 'Bardach, Ann Louise',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Terrorism', 'rank': 4, 'major': 'N'},
{'name': 'glocations', 'value': 'Cuba', 'rank': 5, 'major': 'N'},
{'name': 'subject', 'value': 'Espionage', 'rank': 6, 'major': 'N'},
{'name': 'subject', 'value': 'Perjury', 'rank': 7, 'major': 'N'}],
'pub_date': '2011-03-22T01:15:25+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By James C. McKinley Jr',
'person': [{'firstname': 'James',
'middlename': 'C.',
'lastname': 'McKinley',
'qualifier': 'Jr',
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/40430ff0-b2c5-59e2-925c-687a2469b4d8',
'word_count': 612,
'uri': 'nyt://article/40430ff0-b2c5-59e2-925c-687a2469b4d8'},
{'abstract': 'The real lesson military parents and loved ones of service members learn is that whatever you do, the best thing to do is to do something.',
'web_url': 'https://atwar.blogs.nytimes.com/2010/02/22/combating-worry/',
'snippet': 'The real lesson military parents and loved ones of service members learn is that whatever you do, the best thing to do is to do something.',
'lead_paragraph': 'Mr. Cassone, whose son Richard is serving as a sergeant in Afghanistan, contributed a post in December appealing for a little compassion for parents of active-duty service members during the holidays. Below, he writes about a recent check-in with his son and the worry that lingers after each call.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Combating Worry',
'kicker': 'At War',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [],
'pub_date': '2010-02-22T18:14:55+0000',
'document_type': 'article',
'news_desk': 'Foreign',
'section_name': 'World',
'byline': {'original': 'By Tom Cassone',
'person': [{'firstname': 'Tom',
'middlename': None,
'lastname': 'Cassone',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'_id': 'nyt://article/13a5d975-0532-51f9-8d59-ecedd3a921cb',
'word_count': 688,
'uri': 'nyt://article/13a5d975-0532-51f9-8d59-ecedd3a921cb'},
{'abstract': 'If titles don’t cost a business anything, and if they create psychological and business benefits for our staff, why not give them out liberally?',
'web_url': 'https://boss.blogs.nytimes.com/2012/07/09/do-job-titles-really-matter/',
'snippet': 'If titles don’t cost a business anything, and if they create psychological and business benefits for our staff, why not give them out liberally?',
'lead_paragraph': 'Recently I have been having a debate with one of my senior team members centered around the value of job titles. My colleague’s point of view, which I respect, is that we should be stringent with the titles we hand out. My point of view is that titles don’t cost a business anything and they create psychological and business benefits for our staff, so why not give them out liberally. Being generous with titles not only makes employees feel better, I believe, it can also help with sales.',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Do Job Titles Really Matter?',
'kicker': 'You're the Boss',
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Small Business',
'rank': 1,
'major': 'N'},
{'name': 'organizations', 'value': 'TerraCycle', 'rank': 2, 'major': 'N'}],
'pub_date': '2012-07-09T15:00:29+0000',
'document_type': 'article',
'news_desk': '',
'section_name': 'Business Day',
'subsection_name': 'Entrepreneurship',
'byline': {'original': 'By Tom Szaky',
'person': [{'firstname': 'Tom',
'middlename': None,
'lastname': 'Szaky',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ac785461-1d50-5759-be6d-226830d0195e',
'word_count': 616,
'uri': 'nyt://article/ac785461-1d50-5759-be6d-226830d0195e'},
{'abstract': 'U.S. carriers canceled the majority of their transatlantic flights again, and Continental said it was adding Rome and Barcelona on its list of canceled destinations.',
'web_url': 'https://www.nytimes.com/2010/04/18/us/18usa.html',
'snippet': 'U.S. carriers canceled the majority of their transatlantic flights again, and Continental said it was adding Rome and Barcelona on its list of canceled destinations.',
'lead_paragraph': 'Thousands of travelers bound for Europe remained in limbo in the United States on Saturday, waiting for a volcanic ash cloud an ocean away to clear. ',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Europe-Bound Travelers in U.S. Struggle to Cope',
'kicker': None,
'content_kicker': None,
'print_headline': 'Europe-Bound Travelers in U.S. Struggle to Cope',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Travel and Vacations',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'AIRLINES AND AIRPLANES',
'rank': 2,
'major': 'N'},
{'name': 'glocations',
'value': 'Eyjafjallajokull Volcano (Iceland)',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Airports', 'rank': 4, 'major': 'N'}],
'pub_date': '2010-04-17T20:56:26+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Liz Robbins',
'person': [{'firstname': 'Liz',
'middlename': None,
'lastname': 'Robbins',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/ae40c77a-8f16-512e-8072-1e02bbee68ad',
'word_count': 633,
'uri': 'nyt://article/ae40c77a-8f16-512e-8072-1e02bbee68ad'},
{'abstract': 'A Phoenix nursing home has found that unlimited chocolate, and other comforts, go a long way in reducing patients’ distress.',
'web_url': 'https://www.nytimes.com/2011/01/01/health/01care.html',
'snippet': 'A Phoenix nursing home has found that unlimited chocolate, and other comforts, go a long way in reducing patients’ distress.',
'lead_paragraph': 'PHOENIX — Margaret Nance was, to put it mildly, a difficult case. Agitated, combative, often reluctant to eat, she would hit staff members and fellow residents at nursing homes, several of which kicked her out. But when Beatitudes nursing home agreed to an urgent plea to accept her, all that changed.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/01/health/CARE/CARE-articleLarge-v2.jpg',
'height': 360,
'width': 600,
'legacy': {'xlarge': 'images/2011/01/01/health/CARE/CARE-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 360},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/01/health/CARE/CARE-jumbo.jpg',
'height': 660,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/01/health/CARE/CARE-popup.jpg',
'height': 419,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/01/health/CARE/CARE-articleInline.jpg',
'height': 122,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/01/health/CARE/CARE-sfSpan.jpg',
'height': 255,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2011/01/01/health/CARE/CARE-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2011/01/01/health/CARE/CARE-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'}],
'headline': {'main': 'Giving Alzheimer’s Patients Their Way, Even Chocolate',
'kicker': 'Mind',
'content_kicker': None,
'print_headline': 'Giving Alzheimer’s Patients Their Way, Even Doses of Chocolate',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Medicine and Health',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Elder Care', 'rank': 2, 'major': 'N'},
{'name': 'subject', 'value': 'Nursing Homes', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': "Alzheimer's Disease",
'rank': 4,
'major': 'N'}],
'pub_date': '2011-01-01T01:01:21+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'Health',
'byline': {'original': 'By Pam Belluck',
'person': [{'firstname': 'Pam',
'middlename': None,
'lastname': 'Belluck',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/0bece6bf-8baf-5504-ba73-9a716a92ca2c',
'word_count': 2063,
'uri': 'nyt://article/0bece6bf-8baf-5504-ba73-9a716a92ca2c'},
{'abstract': 'In this novel: a young married couple with children; a beautiful stranger; expensive real estate.',
'web_url': 'https://www.nytimes.com/2010/04/25/books/review/Macy-t.html',
'snippet': 'In this novel: a young married couple with children; a beautiful stranger; expensive real estate.',
'lead_paragraph': 'The set-up of Peter Hedges’ third novel, “The Heights,” is classic and promising. An attractive young couple, married with children, are roused from their quotidian rounds of diapers-and-drop-offs when a rich, beautiful stranger comes to town — “town,” in this case, being the mediacentric, well-heeled, aesthetically unbeatable Brooklyn Heights, where the husband teaches history at an exclusive academy a lot like St. Ann’s. Private school, real estate, a marriage at risk: what more could anyone want?',
'print_section': 'BR',
'print_page': '20',
'source': 'The New York Times',
'multimedia': [],
'headline': {'main': 'Parent Hood',
'kicker': None,
'content_kicker': None,
'print_headline': 'Parent Hood',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Books and Literature',
'rank': 1,
'major': 'N'},
{'name': 'persons', 'value': 'Hedges, Peter', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Housing and Real Estate',
'rank': 3,
'major': 'N'},
{'name': 'glocations',
'value': 'Brooklyn Heights (NYC)',
'rank': 4,
'major': 'N'}],
'pub_date': '2010-04-23T15:55:48+0000',
'document_type': 'article',
'news_desk': 'BookReview',
'section_name': 'Books',
'subsection_name': 'Book Review',
'byline': {'original': 'By Caitlin Macy',
'person': [{'firstname': 'Caitlin',
'middlename': None,
'lastname': 'Macy',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'Review',
'_id': 'nyt://article/ae0dc8fd-41ed-53c9-93e1-77deef949936',
'word_count': 631,
'uri': 'nyt://article/ae0dc8fd-41ed-53c9-93e1-77deef949936'},
{'abstract': 'A roundup of New York characters, including a wise-cracking bank teller and two burly deckhands whose conversation takes an unexpected turn.',
'web_url': 'https://www.nytimes.com/2010/02/22/nyregion/22diary.html',
'snippet': 'A roundup of New York characters, including a wise-cracking bank teller and two burly deckhands whose conversation takes an unexpected turn.',
'lead_paragraph': 'DEAR DIARY:',
'print_section': 'A',
'print_page': '16',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/02/22/nyregion/22diary_1/22diary_1-popup.jpg',
'height': 432,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2010/02/22/nyregion/22diary_1/22diary_1-articleInline.jpg',
'height': 126,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'}],
'headline': {'main': 'Metropolitan Diary',
'kicker': None,
'content_kicker': None,
'print_headline': 'Metropolitan Diary',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'glocations',
'value': 'Park Slope (NYC)',
'rank': 1,
'major': 'N'},
{'name': 'glocations',
'value': 'Manhattan (NYC)',
'rank': 2,
'major': 'N'}],
'pub_date': '2010-02-22T05:29:40+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': None, 'person': [], 'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7ae7f5c0-1a00-540d-93d8-287135fdb4d9',
'word_count': 637,
'uri': 'nyt://article/7ae7f5c0-1a00-540d-93d8-287135fdb4d9'}],
[{'abstract': 'I felt like a fraud as a new mom, until I looked at my literary idols for inspiration.',
'web_url': 'https://www.nytimes.com/2020/04/16/parenting/baby/work-conference-life-balance.html',
'snippet': 'I felt like a fraud as a new mom, until I looked at my literary idols for inspiration.',
'lead_paragraph': 'I was scheduled to attend a work conference six weeks after my daughter’s due date.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-articleLarge.jpg',
'height': 750,
'width': 600,
'legacy': {'xlarge': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 750},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-popup.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-blog480.jpg',
'height': 600,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-blog533.jpg',
'height': 666,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-blog427.jpg',
'height': 534,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-tmagSF.jpg',
'height': 453,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-tmagArticle.jpg',
'height': 740,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-slide.jpg',
'height': 500,
'width': 400,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-jumbo.jpg',
'height': 1024,
'width': 820,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-superJumbo.jpg',
'height': 2048,
'width': 1639,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-blog225.jpg',
'height': 281,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-master1050.jpg',
'height': 1313,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-master675.jpg',
'height': 844,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-master495.jpg',
'height': 619,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-master180.jpg',
'height': 225,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-master315.jpg',
'height': 394,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-master768.jpg',
'height': 960,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumSquareAt3X.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-horizontalMediumAt2X.jpg',
'height': 6445,
'width': 9667,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-threeByTwoLargeAt2X.jpg',
'height': 6445,
'width': 9667,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-articleInline.jpg',
'height': 238,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-hpSmall.jpg',
'height': 204,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-blogSmallInline.jpg',
'height': 189,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mediumFlexible177.jpg',
'height': 221,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine3000.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/04/multimedia/04parenting-conferencebaby/04parenting-conferencebaby-mobileMasterAt3x.jpg',
'height': 2250,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Impersonating Motherhood',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Writing and Writers',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 4,
'major': 'N'}],
'pub_date': '2020-04-16T18:16:26+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Baby',
'byline': {'original': 'By Kaitlyn Greenidge',
'person': [{'firstname': 'Kaitlyn',
'middlename': None,
'lastname': 'Greenidge',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/79a2815c-daef-54b8-8daa-7be0e13e8414',
'word_count': 1489,
'uri': 'nyt://article/79a2815c-daef-54b8-8daa-7be0e13e8414'},
{'abstract': 'A dad grapples with the baggage of raising a toddler whose growth is off the charts.',
'web_url': 'https://www.nytimes.com/2020/04/17/parenting/toddler/big-tall-two-year-old.html',
'snippet': 'A dad grapples with the baggage of raising a toddler whose growth is off the charts.',
'lead_paragraph': 'This story was originally published on May 28, 2019 in NYT Parenting.',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-articleLarge.jpg',
'height': 577,
'width': 600,
'legacy': {'xlarge': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 577},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-popup.jpg',
'height': 500,
'width': 520,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-blog480.jpg',
'height': 462,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-blog533.jpg',
'height': 513,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-blog427.jpg',
'height': 411,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-tmagSF.jpg',
'height': 348,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-tmagArticle.jpg',
'height': 569,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-slide.jpg',
'height': 500,
'width': 520,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-jumbo.jpg',
'height': 985,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-superJumbo.jpg',
'height': 1477,
'width': 1536,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-blog225.jpg',
'height': 216,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-master1050.jpg',
'height': 1010,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-master675.jpg',
'height': 649,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-master495.jpg',
'height': 476,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-master180.jpg',
'height': 173,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-master315.jpg',
'height': 303,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-master768.jpg',
'height': 739,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-horizontalMediumAt2X.jpg',
'height': 1024,
'width': 1536,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-threeByTwoLargeAt2X.jpg',
'height': 1024,
'width': 1536,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-articleInline.jpg',
'height': 183,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-hpSmall.jpg',
'height': 157,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-blogSmallInline.jpg',
'height': 145,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-mediumFlexible177.jpg',
'height': 170,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoSixteenByNineJumbo1600.jpg',
'height': 864,
'width': 1536,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/05/28/multimedia/28-parenting-big-tall/28-parenting-big-tall-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'He Ain’t Heavy, He’s My Son',
'kicker': None,
'content_kicker': None,
'print_headline': None,
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Parenting',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Babies and Infants',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Weight', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Weights and Measures',
'rank': 5,
'major': 'N'}],
'pub_date': '2020-04-17T21:56:21+0000',
'document_type': 'article',
'news_desk': 'Parenting',
'section_name': 'Parenting',
'subsection_name': 'Toddler',
'byline': {'original': 'By Paul L. Underwood',
'person': [{'firstname': 'Paul',
'middlename': 'L.',
'lastname': 'Underwood',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/9a13a649-5764-55a0-bddf-dc5e6ca6e0c9',
'word_count': 1391,
'uri': 'nyt://article/9a13a649-5764-55a0-bddf-dc5e6ca6e0c9'},
{'abstract': 'Two days after a raging blizzard struck, residents remained trapped in cars and in homes without heat. The death toll in the region rose to 17.',
'web_url': 'https://www.nytimes.com/2022/12/25/nyregion/buffalo-winter-storm.html',
'snippet': 'Two days after a raging blizzard struck, residents remained trapped in cars and in homes without heat. The death toll in the region rose to 17.',
'lead_paragraph': 'Trapped inside his Kia Sedona with his four young children as a blizzard raged outside, Zila Santiago frantically called 911, the National Guard and friends for help, but none came. The emergency responders, too, were mired in snowdrifts, even as they attempted rescues.',
'print_section': 'A',
'print_page': '9',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-blog427.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-tmagArticle.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-jumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-superJumbo.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-master1050.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumSquareAt3X.jpg',
'height': 1801,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-horizontalMediumAt2X.jpg',
'height': 3456,
'width': 5184,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-largeWidescreen1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-threeByTwoLargeAt2X.jpg',
'height': 3456,
'width': 5184,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine3000.jpg',
'height': 1688,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/12/25/nyregion/25NY-WINTER-STORM3/25NY-WINTER-STORM-mobileMasterAt3x.jpg',
'height': 1200,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'In Buffalo, Even the Rescuers Needed Rescuing',
'kicker': None,
'content_kicker': None,
'print_headline': 'Stranded, Snowed In And Saved by Angels As Upstate Freezes Over',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Snow and Snowstorms',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Power Failures and Blackouts',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Rescues', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'Buffalo (NY)', 'rank': 4, 'major': 'N'},
{'name': 'glocations',
'value': 'Erie County (NY)',
'rank': 5,
'major': 'N'},
{'name': 'subject',
'value': 'Deaths (Fatalities)',
'rank': 6,
'major': 'N'}],
'pub_date': '2022-12-25T15:26:28+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Sarah Maslin Nir and Michael D. Regan',
'person': [{'firstname': 'Sarah',
'middlename': 'Maslin',
'lastname': 'Nir',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Michael',
'middlename': None,
'lastname': None,
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/2a04b674-73c1-5c95-b331-c6cf90e48aba',
'word_count': 1388,
'uri': 'nyt://article/2a04b674-73c1-5c95-b331-c6cf90e48aba'},
{'abstract': 'He wasn’t just a parent; he was also a mechanical engineer.',
'web_url': 'https://www.nytimes.com/2013/08/11/magazine/who-made-that-sippy-cup.html',
'snippet': 'He wasn’t just a parent; he was also a mechanical engineer.',
'lead_paragraph': '\xa0',
'print_section': 'MM',
'print_page': '16',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-articleLarge.jpg',
'height': 434,
'width': 600,
'legacy': {'xlarge': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 434},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-blog480.jpg',
'height': 347,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-blog427.jpg',
'height': 309,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-tmagArticle.jpg',
'height': 429,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-jumbo.jpg',
'height': 741,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-blog225.jpg',
'height': 163,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-master675.jpg',
'height': 489,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-master180.jpg',
'height': 130,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-popup.jpg',
'height': 471,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-blog533.jpg',
'height': 386,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-tmagSF.jpg',
'height': 262,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-slide.jpg',
'height': 434,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-superJumbo.jpg',
'height': 1483,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-master1050.jpg',
'height': 760,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-master495.jpg',
'height': 358,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-articleInline.jpg',
'height': 138,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-hpSmall.jpg',
'height': 118,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-blogSmallInline.jpg',
'height': 109,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-mediumFlexible177.jpg',
'height': 128,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-sfSpan.jpg',
'height': 286,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-largeHorizontal375.jpg',
'height': 271,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-hpLarge.jpg',
'height': 256,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-largeWidescreen573.jpg',
'height': 287,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-videoHpMedium.jpg',
'height': 190,
'width': 337,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2013/08/11/magazine/11wmt/mag-11WMT-t_CA0-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'}],
'headline': {'main': 'Who Made That Sippy Cup?',
'kicker': None,
'content_kicker': None,
'print_headline': 'Who Made That? (Sippy Cup)',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'persons',
'value': 'Kennedy, Pagan',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Children and Childhood',
'rank': 2,
'major': 'N'},
{'name': 'persons', 'value': 'Belanger, Richard', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Inventions and Patents',
'rank': 4,
'major': 'N'},
{'name': 'subject', 'value': 'Tableware', 'rank': 5, 'major': 'N'}],
'pub_date': '2013-08-09T14:36:15+0000',
'document_type': 'article',
'news_desk': 'Magazine',
'section_name': 'Magazine',
'byline': {'original': 'By Pagan Kennedy',
'person': [{'firstname': 'Pagan',
'middlename': None,
'lastname': 'Kennedy',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/d0013b58-275d-56fc-9475-bb1163f63cb5',
'word_count': 628,
'uri': 'nyt://article/d0013b58-275d-56fc-9475-bb1163f63cb5'},
{'abstract': 'The physical toll on Mayfield, Ky., is evident. The psychological anguish will be equally difficult to overcome.',
'web_url': 'https://www.nytimes.com/2022/01/25/us/tornadoes-kentucky.html',
'snippet': 'The physical toll on Mayfield, Ky., is evident. The psychological anguish will be equally difficult to overcome.',
'lead_paragraph': 'MAYFIELD, Ky. — Isaiah Holt passes his days sequestered in a home that was not touched by the tornado. Still, he cannot escape the storm.',
'print_section': 'A',
'print_page': '11',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-superJumbo.jpg',
'height': 1364,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-horizontalMediumAt2X.jpg',
'height': 2398,
'width': 3600,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-threeByTwoLargeAt2X.jpg',
'height': 2398,
'width': 3600,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-threeByTwoMediumAt2X-v2.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/merlin_200627730_98d7504f-763e-46ca-8653-eac2e4a76a92-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2022/01/21/us/21candle-factory-1/21candle-factory-1-mobileMasterAt3x.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'With Nightmares and Tears, a Kentucky Town Feels the Long Reach of a Tornado’s Trauma',
'kicker': None,
'content_kicker': None,
'print_headline': 'In Tornado’s Wake, a Lingering Trail of Emotional Trauma',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Tornadoes',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Anxiety and Stress',
'rank': 2,
'major': 'N'},
{'name': 'subject',
'value': 'Post-Traumatic Stress Disorder',
'rank': 3,
'major': 'N'},
{'name': 'subject',
'value': 'Mental Health and Disorders',
'rank': 4,
'major': 'N'},
{'name': 'glocations', 'value': 'Mayfield (Ky)', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Mayfield Consumer Products',
'rank': 6,
'major': 'N'}],
'pub_date': '2022-01-25T08:00:13+0000',
'document_type': 'article',
'news_desk': 'National',
'section_name': 'U.S.',
'byline': {'original': 'By Rick Rojas',
'person': [{'firstname': 'Rick',
'middlename': None,
'lastname': 'Rojas',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/7773c598-ff51-50db-b8f9-3a0d6f85b2f8',
'word_count': 1515,
'uri': 'nyt://article/7773c598-ff51-50db-b8f9-3a0d6f85b2f8'},
{'abstract': 'The tech giant is positioning itself in schools as a trusted authority on digital citizenship at a moment when the company’s data-handling practices are under growing scrutiny.',
'web_url': 'https://www.nytimes.com/2018/10/23/business/google-kids-online-safety.html',
'snippet': 'The tech giant is positioning itself in schools as a trusted authority on digital citizenship at a moment when the company’s data-handling practices are under growing scrutiny.',
'lead_paragraph': 'Google is on a mission to teach children how to be safe online. That is the message behind “Be Internet Awesome,” a so-called digital-citizenship education program that the technology giant developed for schools.',
'print_section': 'B',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-articleLarge.jpg',
'height': 342,
'width': 600,
'legacy': {'xlarge': 'images/2018/10/22/business/22googlekid/22googlekid-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 342},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-popup.jpg',
'height': 370,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-blog480.jpg',
'height': 273,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-blog533.jpg',
'height': 303,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-blog427.jpg',
'height': 243,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-tmagSF.jpg',
'height': 206,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-tmagArticle.jpg',
'height': 337,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-slide.jpg',
'height': 342,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-jumbo.jpg',
'height': 583,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-superJumbo.jpg',
'height': 1166,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-blog225.jpg',
'height': 128,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-master1050.jpg',
'height': 598,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-master675.jpg',
'height': 384,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-master495.jpg',
'height': 282,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-master180.jpg',
'height': 102,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-master315.jpg',
'height': 179,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-master768.jpg',
'height': 437,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2018/10/22/business/22googlekid/22googlekid-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-horizontalMediumAt2X.jpg',
'height': 1480,
'width': 2221,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2018/10/22/business/22googlekid/22googlekid-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-threeByTwoLargeAt2X.jpg',
'height': 1480,
'width': 2221,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-articleInline.jpg',
'height': 108,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-hpSmall.jpg',
'height': 93,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-blogSmallInline.jpg',
'height': 86,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-mediumFlexible177.jpg',
'height': 101,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoSixteenByNineJumbo1600.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-facebookJumbo.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2018/10/22/business/22googlekid/22googlekid-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'}],
'headline': {'main': 'Google Is Teaching Children How to Act Online. Is It the Best Role Model?',
'kicker': None,
'content_kicker': None,
'print_headline': 'Internet Safety, Taught by an Internet Giant',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Computer Security',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Education (K-12)', 'rank': 2, 'major': 'N'},
{'name': 'subject',
'value': 'Advertising and Marketing',
'rank': 3,
'major': 'N'},
{'name': 'subject', 'value': 'Privacy', 'rank': 4, 'major': 'N'},
{'name': 'organizations', 'value': 'Google Inc', 'rank': 5, 'major': 'N'},
{'name': 'organizations',
'value': 'Campaign for a Commercial-Free Childhood',
'rank': 6,
'major': 'N'}],
'pub_date': '2018-10-23T20:15:49+0000',
'document_type': 'article',
'news_desk': 'Business',
'section_name': 'Business Day',
'byline': {'original': 'By Natasha Singer and Sapna Maheshwari',
'person': [{'firstname': 'Natasha',
'middlename': None,
'lastname': 'Singer',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1},
{'firstname': 'Sapna',
'middlename': None,
'lastname': 'Maheshwari',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 2}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/53ed9659-8134-5124-8212-a5ac2e00b205',
'word_count': 1400,
'uri': 'nyt://article/53ed9659-8134-5124-8212-a5ac2e00b205'},
{'abstract': 'As the flow of deliveries continues to increase, New York City residential buildings have implemented high-tech solutions.',
'web_url': 'https://www.nytimes.com/2019/11/07/realestate/where-the-packages-go.html',
'snippet': 'As the flow of deliveries continues to increase, New York City residential buildings have implemented high-tech solutions.',
'lead_paragraph': 'Package deliveries are overtaking New York City and the way many residential buildings have responded to the influx is to go high tech.',
'print_section': 'RE',
'print_page': '4',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-articleLarge.jpg',
'height': 600,
'width': 600,
'legacy': {'xlarge': 'images/2019/11/10/realestate/07Packages/07Packages-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 600},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-popup.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-blog480.jpg',
'height': 480,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-blog533.jpg',
'height': 533,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-blog427.jpg',
'height': 427,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-tmagSF.jpg',
'height': 362,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-tmagArticle.jpg',
'height': 592,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-slide.jpg',
'height': 500,
'width': 500,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-jumbo.jpg',
'height': 1024,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-superJumbo.jpg',
'height': 1950,
'width': 1950,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-blog225.jpg',
'height': 225,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-master1050.jpg',
'height': 1050,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-master675.jpg',
'height': 675,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-master495.jpg',
'height': 495,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-master180.jpg',
'height': 180,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-master315.jpg',
'height': 315,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-master768.jpg',
'height': 768,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2019/11/10/realestate/07Packages/07Packages-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-largeHorizontalJumbo.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-horizontalMediumAt2X.jpg',
'height': 1300,
'width': 1950,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2019/11/10/realestate/07Packages/07Packages-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-threeByTwoLargeAt2X.jpg',
'height': 1300,
'width': 1950,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-threeByTwoMediumAt2X.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-articleInline.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-hpSmall.jpg',
'height': 163,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-blogSmallInline.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mediumFlexible177.jpg',
'height': 177,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-verticalTwoByThree735.jpg',
'height': 1103,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2019/11/10/realestate/07Packages/07Packages-mobileMasterAt3x.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Where the Packages Go',
'kicker': None,
'content_kicker': None,
'print_headline': 'Taking Arms Against a Sea of Packages',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Real Estate and Housing (Residential)',
'rank': 1,
'major': 'N'},
{'name': 'subject', 'value': 'Delivery Services', 'rank': 2, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 3, 'major': 'N'}],
'pub_date': '2019-11-07T14:30:10+0000',
'document_type': 'article',
'news_desk': 'RealEstate',
'section_name': 'Real Estate',
'byline': {'original': 'By Ronnie Koenig',
'person': [{'firstname': 'Ronnie',
'middlename': None,
'lastname': 'Koenig',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/f960e566-ec7a-573c-ae7f-0d797493fea6',
'word_count': 1485,
'uri': 'nyt://article/f960e566-ec7a-573c-ae7f-0d797493fea6'},
{'abstract': 'With little else to do, many people are savoring the time they have for simple pleasures like eating and dancing with the ones they love.',
'web_url': 'https://www.nytimes.com/2020/05/24/nyregion/coronavirus-nyc-families.html',
'snippet': 'With little else to do, many people are savoring the time they have for simple pleasures like eating and dancing with the ones they love.',
'lead_paragraph': 'The coronavirus has smothered New York City’s economy and sealed off its museums and concert halls like crime scenes. Many people have filled the void with something that has always been there, close at hand but often crowded out of reach: their families.',
'print_section': 'A',
'print_page': '1',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-articleLarge.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-articleLarge.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-popup.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-blog480.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-blog533.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-blog427.jpg',
'height': 284,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-tmagSF.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-tmagArticle.jpg',
'height': 394,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-slide.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-jumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-superJumbo.jpg',
'height': 1364,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-blog225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-master1050.jpg',
'height': 699,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-master675.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-master495.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-master180.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-master315.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-master768.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-thumbStandard.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-thumbStandard.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-blogSmallThumb.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-thumbLarge.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-smallSquare168.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-smallSquare252.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-square320.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-moth.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-filmstrip.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-square640.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumSquare149.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumSquareAt3X.jpg',
'height': 1799,
'width': 1800,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-sfSpan.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-largeHorizontal375.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-largeHorizontalJumbo.jpg',
'height': 682,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-horizontalMediumAt2X.jpg',
'height': 2891,
'width': 4340,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-hpLarge.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-largeWidescreen573.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-largeWidescreen1050.jpg',
'height': 590,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-thumbWide.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-thumbWide.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoThumb.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoLarge.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumThreeByTwo210.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumThreeByTwo225.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumThreeByTwo440.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumThreeByTwo252.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumThreeByTwo378.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-threeByTwoLargeAt2X.jpg',
'height': 2891,
'width': 4340,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-threeByTwoMediumAt2X.jpg',
'height': 999,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-threeByTwoSmallAt2X.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-articleInline.jpg',
'height': 127,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-hpSmall.jpg',
'height': 109,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-blogSmallInline.jpg',
'height': 101,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mediumFlexible177.jpg',
'height': 118,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSmall.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoHpMedium.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine600.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine540.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine495.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine390.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine1050.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine480.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine310.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine225.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine96.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine3000.jpg',
'height': 1686,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine768.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNine150.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoSixteenByNineJumbo1600.jpg',
'height': 899,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-miniMoth.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-windowsTile336H.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoFifteenBySeven1305.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-videoFifteenBySeven2610.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-facebookJumbo.jpg',
'height': 549,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-watch308.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-watch268.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-verticalTwoByThree735.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2020/05/21/nyregion/00nyvirus-families1/00nyvirus-families1-mobileMasterAt3x.jpg',
'height': 1199,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'The Virus Has Wrecked Some Families. It Has Brought Others Closer.',
'kicker': None,
'content_kicker': None,
'print_headline': 'Finding Bliss in New Schedule When Family Time Is All Day',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'Families and Family Life',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Parenting', 'rank': 3, 'major': 'N'},
{'name': 'glocations', 'value': 'New York City', 'rank': 4, 'major': 'N'},
{'name': 'subject', 'value': 'Quarantines', 'rank': 5, 'major': 'N'}],
'pub_date': '2020-05-24T21:08:42+0000',
'document_type': 'article',
'news_desk': 'Metro',
'section_name': 'New York',
'byline': {'original': 'By Michael Wilson',
'person': [{'firstname': 'Michael',
'middlename': None,
'lastname': 'Wilson',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/dab0371a-4822-5350-88b5-9d493804e0c9',
'word_count': 1326,
'uri': 'nyt://article/dab0371a-4822-5350-88b5-9d493804e0c9'},
{'abstract': 'More Americans are writing end-of-life instructions as the pandemic renders such decisions less abstract. But are medical providers listening?',
'web_url': 'https://www.nytimes.com/2021/01/22/health/elderly-dnr-death-lawsuit.html',
'snippet': 'More Americans are writing end-of-life instructions as the pandemic renders such decisions less abstract. But are medical providers listening?',
'lead_paragraph': 'Gerald and Elaine Greenberg married in 1976, as dental students. They practiced on Long Island and in Manhattan and raised two sons. Then in 2010, she noticed that her husband, the math whiz, was having trouble calculating tips in restaurants. “He just didn’t seem as sharp,” she said.',
'print_section': 'D',
'print_page': '7',
'source': 'The New York Times',
'multimedia': [{'rank': 0,
'subtype': 'xlarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-articleLarge-v2.jpg',
'height': 400,
'width': 600,
'legacy': {'xlarge': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-articleLarge-v2.jpg',
'xlargewidth': 600,
'xlargeheight': 400},
'subType': 'xlarge',
'crop_name': 'articleLarge'},
{'rank': 0,
'subtype': 'popup',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-popup-v2.jpg',
'height': 433,
'width': 650,
'legacy': {},
'subType': 'popup',
'crop_name': 'popup'},
{'rank': 0,
'subtype': 'blog480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-blog480-v2.jpg',
'height': 320,
'width': 480,
'legacy': {},
'subType': 'blog480',
'crop_name': 'blog480'},
{'rank': 0,
'subtype': 'blog533',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-blog533-v2.jpg',
'height': 355,
'width': 533,
'legacy': {},
'subType': 'blog533',
'crop_name': 'blog533'},
{'rank': 0,
'subtype': 'blog427',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-blog427-v2.jpg',
'height': 285,
'width': 427,
'legacy': {},
'subType': 'blog427',
'crop_name': 'blog427'},
{'rank': 0,
'subtype': 'tmagSF',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-tmagSF-v2.jpg',
'height': 241,
'width': 362,
'legacy': {},
'subType': 'tmagSF',
'crop_name': 'tmagSF'},
{'rank': 0,
'subtype': 'tmagArticle',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-tmagArticle-v2.jpg',
'height': 395,
'width': 592,
'legacy': {},
'subType': 'tmagArticle',
'crop_name': 'tmagArticle'},
{'rank': 0,
'subtype': 'slide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-slide-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'slide',
'crop_name': 'slide'},
{'rank': 0,
'subtype': 'jumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-jumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'jumbo',
'crop_name': 'jumbo'},
{'rank': 0,
'subtype': 'superJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-superJumbo-v2.jpg',
'height': 1365,
'width': 2048,
'legacy': {},
'subType': 'superJumbo',
'crop_name': 'superJumbo'},
{'rank': 0,
'subtype': 'blog225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-blog225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'blog225',
'crop_name': 'blog225'},
{'rank': 0,
'subtype': 'master1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-master1050-v2.jpg',
'height': 700,
'width': 1050,
'legacy': {},
'subType': 'master1050',
'crop_name': 'master1050'},
{'rank': 0,
'subtype': 'master675',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-master675-v2.jpg',
'height': 450,
'width': 675,
'legacy': {},
'subType': 'master675',
'crop_name': 'master675'},
{'rank': 0,
'subtype': 'master495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-master495-v2.jpg',
'height': 330,
'width': 495,
'legacy': {},
'subType': 'master495',
'crop_name': 'master495'},
{'rank': 0,
'subtype': 'master180',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-master180-v2.jpg',
'height': 120,
'width': 180,
'legacy': {},
'subType': 'master180',
'crop_name': 'master180'},
{'rank': 0,
'subtype': 'master315',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-master315-v2.jpg',
'height': 210,
'width': 315,
'legacy': {},
'subType': 'master315',
'crop_name': 'master315'},
{'rank': 0,
'subtype': 'master768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-master768-v2.jpg',
'height': 512,
'width': 768,
'legacy': {},
'subType': 'master768',
'crop_name': 'master768'},
{'rank': 0,
'subtype': 'thumbnail',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-thumbStandard-v2.jpg',
'height': 75,
'width': 75,
'legacy': {'thumbnail': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-thumbStandard-v2.jpg',
'thumbnailwidth': 75,
'thumbnailheight': 75},
'subType': 'thumbnail',
'crop_name': 'thumbStandard'},
{'rank': 0,
'subtype': 'blogSmallThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-blogSmallThumb-v2.jpg',
'height': 50,
'width': 50,
'legacy': {},
'subType': 'blogSmallThumb',
'crop_name': 'blogSmallThumb'},
{'rank': 0,
'subtype': 'thumbLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-thumbLarge-v2.jpg',
'height': 150,
'width': 150,
'legacy': {},
'subType': 'thumbLarge',
'crop_name': 'thumbLarge'},
{'rank': 0,
'subtype': 'smallSquare168',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-smallSquare168-v2.jpg',
'height': 168,
'width': 168,
'legacy': {},
'subType': 'smallSquare168',
'crop_name': 'smallSquare168'},
{'rank': 0,
'subtype': 'smallSquare252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-smallSquare252-v2.jpg',
'height': 252,
'width': 252,
'legacy': {},
'subType': 'smallSquare252',
'crop_name': 'smallSquare252'},
{'rank': 0,
'subtype': 'square320',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-square320-v2.jpg',
'height': 320,
'width': 320,
'legacy': {},
'subType': 'square320',
'crop_name': 'square320'},
{'rank': 0,
'subtype': 'moth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-moth-v2.jpg',
'height': 151,
'width': 151,
'legacy': {},
'subType': 'moth',
'crop_name': 'moth'},
{'rank': 0,
'subtype': 'filmstrip',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-filmstrip-v2.jpg',
'height': 190,
'width': 190,
'legacy': {},
'subType': 'filmstrip',
'crop_name': 'filmstrip'},
{'rank': 0,
'subtype': 'square640',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-square640-v2.jpg',
'height': 640,
'width': 640,
'legacy': {},
'subType': 'square640',
'crop_name': 'square640'},
{'rank': 0,
'subtype': 'mediumSquare149',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumSquare149-v2.jpg',
'height': 149,
'width': 149,
'legacy': {},
'subType': 'mediumSquare149',
'crop_name': 'mediumSquare149'},
{'rank': 0,
'subtype': 'mediumSquareAt3X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumSquareAt3X-v2.jpg',
'height': 1625,
'width': 1624,
'legacy': {},
'subType': 'mediumSquareAt3X',
'crop_name': 'mediumSquareAt3X'},
{'rank': 0,
'subtype': 'sfSpan',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-sfSpan-v2.jpg',
'height': 263,
'width': 395,
'legacy': {},
'subType': 'sfSpan',
'crop_name': 'sfSpan'},
{'rank': 0,
'subtype': 'largeHorizontal375',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-largeHorizontal375-v2.jpg',
'height': 250,
'width': 375,
'legacy': {},
'subType': 'largeHorizontal375',
'crop_name': 'largeHorizontal375'},
{'rank': 0,
'subtype': 'largeHorizontalJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-largeHorizontalJumbo-v2.jpg',
'height': 683,
'width': 1024,
'legacy': {},
'subType': 'largeHorizontalJumbo',
'crop_name': 'largeHorizontalJumbo'},
{'rank': 0,
'subtype': 'horizontalMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-horizontalMediumAt2X-v2.jpg',
'height': 2333,
'width': 3500,
'legacy': {},
'subType': 'horizontalMediumAt2X',
'crop_name': 'horizontalMediumAt2X'},
{'rank': 0,
'subtype': 'hpLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-hpLarge-v2.jpg',
'height': 287,
'width': 511,
'legacy': {},
'subType': 'hpLarge',
'crop_name': 'hpLarge'},
{'rank': 0,
'subtype': 'largeWidescreen573',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-largeWidescreen573-v2.jpg',
'height': 322,
'width': 573,
'legacy': {},
'subType': 'largeWidescreen573',
'crop_name': 'largeWidescreen573'},
{'rank': 0,
'subtype': 'largeWidescreen1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-largeWidescreen1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'largeWidescreen1050',
'crop_name': 'largeWidescreen1050'},
{'rank': 0,
'subtype': 'wide',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-thumbWide-v2.jpg',
'height': 126,
'width': 190,
'legacy': {'widewidth': 190,
'wideheight': 126,
'wide': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-thumbWide-v2.jpg'},
'subType': 'wide',
'crop_name': 'thumbWide'},
{'rank': 0,
'subtype': 'videoThumb',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoThumb-v2.jpg',
'height': 50,
'width': 75,
'legacy': {},
'subType': 'videoThumb',
'crop_name': 'videoThumb'},
{'rank': 0,
'subtype': 'videoLarge',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoLarge-v2.jpg',
'height': 507,
'width': 768,
'legacy': {},
'subType': 'videoLarge',
'crop_name': 'videoLarge'},
{'rank': 0,
'subtype': 'mediumThreeByTwo210',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumThreeByTwo210-v2.jpg',
'height': 140,
'width': 210,
'legacy': {},
'subType': 'mediumThreeByTwo210',
'crop_name': 'mediumThreeByTwo210'},
{'rank': 0,
'subtype': 'mediumThreeByTwo225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumThreeByTwo225-v2.jpg',
'height': 150,
'width': 225,
'legacy': {},
'subType': 'mediumThreeByTwo225',
'crop_name': 'mediumThreeByTwo225'},
{'rank': 0,
'subtype': 'mediumThreeByTwo440',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumThreeByTwo440-v2.jpg',
'height': 293,
'width': 440,
'legacy': {},
'subType': 'mediumThreeByTwo440',
'crop_name': 'mediumThreeByTwo440'},
{'rank': 0,
'subtype': 'mediumThreeByTwo252',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumThreeByTwo252-v2.jpg',
'height': 168,
'width': 252,
'legacy': {},
'subType': 'mediumThreeByTwo252',
'crop_name': 'mediumThreeByTwo252'},
{'rank': 0,
'subtype': 'mediumThreeByTwo378',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumThreeByTwo378-v2.jpg',
'height': 252,
'width': 378,
'legacy': {},
'subType': 'mediumThreeByTwo378',
'crop_name': 'mediumThreeByTwo378'},
{'rank': 0,
'subtype': 'threeByTwoLargeAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-threeByTwoLargeAt2X-v2.jpg',
'height': 2333,
'width': 3500,
'legacy': {},
'subType': 'threeByTwoLargeAt2X',
'crop_name': 'threeByTwoLargeAt2X'},
{'rank': 0,
'subtype': 'threeByTwoMediumAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-threeByTwoMediumAt2X-v2.jpg',
'height': 1000,
'width': 1500,
'legacy': {},
'subType': 'threeByTwoMediumAt2X',
'crop_name': 'threeByTwoMediumAt2X'},
{'rank': 0,
'subtype': 'threeByTwoSmallAt2X',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-threeByTwoSmallAt2X-v2.jpg',
'height': 400,
'width': 600,
'legacy': {},
'subType': 'threeByTwoSmallAt2X',
'crop_name': 'threeByTwoSmallAt2X'},
{'rank': 0,
'subtype': 'articleInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-articleInline-v3.jpg',
'height': 116,
'width': 190,
'legacy': {},
'subType': 'articleInline',
'crop_name': 'articleInline'},
{'rank': 0,
'subtype': 'hpSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-hpSmall-v3.jpg',
'height': 100,
'width': 163,
'legacy': {},
'subType': 'hpSmall',
'crop_name': 'hpSmall'},
{'rank': 0,
'subtype': 'blogSmallInline',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-blogSmallInline-v3.jpg',
'height': 92,
'width': 151,
'legacy': {},
'subType': 'blogSmallInline',
'crop_name': 'blogSmallInline'},
{'rank': 0,
'subtype': 'mediumFlexible177',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mediumFlexible177-v3.jpg',
'height': 108,
'width': 177,
'legacy': {},
'subType': 'mediumFlexible177',
'crop_name': 'mediumFlexible177'},
{'rank': 0,
'subtype': 'videoSmall',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSmall-v2.jpg',
'height': 281,
'width': 500,
'legacy': {},
'subType': 'videoSmall',
'crop_name': 'videoSmall'},
{'rank': 0,
'subtype': 'videoHpMedium',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoHpMedium-v2.jpg',
'height': 211,
'width': 375,
'legacy': {},
'subType': 'videoHpMedium',
'crop_name': 'videoHpMedium'},
{'rank': 0,
'subtype': 'videoSixteenByNine600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine600-v2.jpg',
'height': 338,
'width': 600,
'legacy': {},
'subType': 'videoSixteenByNine600',
'crop_name': 'videoSixteenByNine600'},
{'rank': 0,
'subtype': 'videoSixteenByNine540',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine540-v2.jpg',
'height': 304,
'width': 540,
'legacy': {},
'subType': 'videoSixteenByNine540',
'crop_name': 'videoSixteenByNine540'},
{'rank': 0,
'subtype': 'videoSixteenByNine495',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine495-v2.jpg',
'height': 278,
'width': 495,
'legacy': {},
'subType': 'videoSixteenByNine495',
'crop_name': 'videoSixteenByNine495'},
{'rank': 0,
'subtype': 'videoSixteenByNine390',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine390-v2.jpg',
'height': 219,
'width': 390,
'legacy': {},
'subType': 'videoSixteenByNine390',
'crop_name': 'videoSixteenByNine390'},
{'rank': 0,
'subtype': 'videoSixteenByNine1050',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine1050-v2.jpg',
'height': 591,
'width': 1050,
'legacy': {},
'subType': 'videoSixteenByNine1050',
'crop_name': 'videoSixteenByNine1050'},
{'rank': 0,
'subtype': 'videoSixteenByNine480',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine480-v2.jpg',
'height': 270,
'width': 480,
'legacy': {},
'subType': 'videoSixteenByNine480',
'crop_name': 'videoSixteenByNine480'},
{'rank': 0,
'subtype': 'videoSixteenByNine310',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine310-v2.jpg',
'height': 174,
'width': 310,
'legacy': {},
'subType': 'videoSixteenByNine310',
'crop_name': 'videoSixteenByNine310'},
{'rank': 0,
'subtype': 'videoSixteenByNine225',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine225-v2.jpg',
'height': 126,
'width': 225,
'legacy': {},
'subType': 'videoSixteenByNine225',
'crop_name': 'videoSixteenByNine225'},
{'rank': 0,
'subtype': 'videoSixteenByNine96',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine96-v2.jpg',
'height': 54,
'width': 96,
'legacy': {},
'subType': 'videoSixteenByNine96',
'crop_name': 'videoSixteenByNine96'},
{'rank': 0,
'subtype': 'videoSixteenByNine3000',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine3000-v2.jpg',
'height': 1687,
'width': 3000,
'legacy': {},
'subType': 'videoSixteenByNine3000',
'crop_name': 'videoSixteenByNine3000'},
{'rank': 0,
'subtype': 'videoSixteenByNine768',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine768-v2.jpg',
'height': 432,
'width': 768,
'legacy': {},
'subType': 'videoSixteenByNine768',
'crop_name': 'videoSixteenByNine768'},
{'rank': 0,
'subtype': 'videoSixteenByNine150',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNine150-v2.jpg',
'height': 84,
'width': 150,
'legacy': {},
'subType': 'videoSixteenByNine150',
'crop_name': 'videoSixteenByNine150'},
{'rank': 0,
'subtype': 'videoSixteenByNineJumbo1600',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoSixteenByNineJumbo1600-v2.jpg',
'height': 900,
'width': 1600,
'legacy': {},
'subType': 'videoSixteenByNineJumbo1600',
'crop_name': 'videoSixteenByNineJumbo1600'},
{'rank': 0,
'subtype': 'miniMoth',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-miniMoth-v2.jpg',
'height': 70,
'width': 151,
'legacy': {},
'subType': 'miniMoth',
'crop_name': 'miniMoth'},
{'rank': 0,
'subtype': 'windowsTile336H',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-windowsTile336H-v2.jpg',
'height': 336,
'width': 694,
'legacy': {},
'subType': 'windowsTile336H',
'crop_name': 'windowsTile336H'},
{'rank': 0,
'subtype': 'videoFifteenBySeven1305',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoFifteenBySeven1305-v2.jpg',
'height': 609,
'width': 1305,
'legacy': {},
'subType': 'videoFifteenBySeven1305',
'crop_name': 'videoFifteenBySeven1305'},
{'rank': 0,
'subtype': 'videoFifteenBySeven2610',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-videoFifteenBySeven2610-v2.jpg',
'height': 1218,
'width': 2610,
'legacy': {},
'subType': 'videoFifteenBySeven2610',
'crop_name': 'videoFifteenBySeven2610'},
{'rank': 0,
'subtype': 'facebookJumbo',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-facebookJumbo-v2.jpg',
'height': 550,
'width': 1050,
'legacy': {},
'subType': 'facebookJumbo',
'crop_name': 'facebookJumbo'},
{'rank': 0,
'subtype': 'watch308',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-watch308-v2.jpg',
'height': 348,
'width': 312,
'legacy': {},
'subType': 'watch308',
'crop_name': 'watch308'},
{'rank': 0,
'subtype': 'watch268',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-watch268-v2.jpg',
'height': 303,
'width': 272,
'legacy': {},
'subType': 'watch268',
'crop_name': 'watch268'},
{'rank': 0,
'subtype': 'verticalTwoByThree735',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-verticalTwoByThree735-v2.jpg',
'height': 1102,
'width': 735,
'legacy': {},
'subType': 'verticalTwoByThree735',
'crop_name': 'verticalTwoByThree735'},
{'rank': 0,
'subtype': 'mobileMasterAt3x',
'caption': None,
'credit': None,
'type': 'image',
'url': 'images/2021/01/26/science/22SCI-SPAN1/22SCI-SPAN1-mobileMasterAt3x-v2.jpg',
'height': 1800,
'width': 1800,
'legacy': {},
'subType': 'mobileMasterAt3x',
'crop_name': 'mobileMasterAt3x'}],
'headline': {'main': 'Filing Suit for ‘Wrongful Life’',
'kicker': 'the new old age',
'content_kicker': None,
'print_headline': 'Defying Patients’ End-of-Life Wishes Can Be Costly',
'name': None,
'seo': None,
'sub': None},
'keywords': [{'name': 'subject',
'value': 'your-feed-science',
'rank': 1,
'major': 'N'},
{'name': 'subject',
'value': 'your-feed-healthcare',
'rank': 2,
'major': 'N'},
{'name': 'subject', 'value': 'Death and Dying', 'rank': 3, 'major': 'N'},
{'name': 'subject',
'value': 'Living Wills and Health Care Proxies',
'rank': 4,
'major': 'N'},
{'name': 'subject',
'value': 'Life-Sustaining Support Systems, Withdrawal Of',
'rank': 5,
'major': 'N'},
{'name': 'subject', 'value': 'Malpractice', 'rank': 6, 'major': 'N'},
{'name': 'subject',
'value': 'Suits and Litigation (Civil)',
'rank': 7,
'major': 'N'},
{'name': 'subject',
'value': 'Compensation for Damages (Law)',
'rank': 8,
'major': 'N'},
{'name': 'subject', 'value': 'Hospitals', 'rank': 9, 'major': 'N'},
{'name': 'subject', 'value': 'Elderly', 'rank': 10, 'major': 'N'},
{'name': 'subject',
'value': 'Coronavirus (2019-nCoV)',
'rank': 11,
'major': 'N'},
{'name': 'glocations', 'value': 'Augusta (Ga)', 'rank': 12, 'major': 'N'},
{'name': 'glocations', 'value': 'Helena (Mont)', 'rank': 13, 'major': 'N'},
{'name': 'glocations',
'value': 'New Rochelle (NY)',
'rank': 14,
'major': 'N'},
{'name': 'glocations',
'value': 'United States',
'rank': 15,
'major': 'N'}],
'pub_date': '2021-01-22T15:31:40+0000',
'document_type': 'article',
'news_desk': 'Science',
'section_name': 'Health',
'byline': {'original': 'By Paula Span',
'person': [{'firstname': 'Paula',
'middlename': None,
'lastname': 'Span',
'qualifier': None,
'title': None,
'role': 'reported',
'organization': '',
'rank': 1}],
'organization': None},
'type_of_material': 'News',
'_id': 'nyt://article/a09f6c7f-084f-59e7-8dd6-2be8085d479f',
'word_count': 1312,
'uri': 'nyt://article/a09f6c7f-084f-59e7-8dd6-2be8085d479f'},
{'abstract': 'Checking in with the blues bassist, the homeless student, the hipster priest and the lesbian couple who survived the Spanish flu and the Holocaust.',
'web_url': 'https://www.nytimes.com/2020/12/04/nyregion/coronavirus-nyc-big-city-hope.html',
'snippet': 'Checking in with the blues bassist, the homeless student, the hipster priest and the lesbian couple who survived the Spanish flu and the Holocaust.',
'lead_paragraph': 'At the outset of the pandemic, I met many New Yorkers who were facing the challenges of the crisis in profound and transformative ways. Some watched as their livelihoods were destroyed, accelerating unwelcome retirement. Others were young and stopped short in their pursuits and promise. Others still saw opportunity in despair or managed to find serenity and quiet amid t